diff --git a/apps/nativescript-starter-solid/project.json b/apps/nativescript-starter-solid/project.json new file mode 100644 index 0000000..bf20450 --- /dev/null +++ b/apps/nativescript-starter-solid/project.json @@ -0,0 +1,51 @@ +{ + "name": "nativescript-starter-solid", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "sourceRoot": "apps/nativescript-starter-solid/src", + "projectType": "application", + "targets": { + "ios": { + "executor": "@nativescript/nx:build", + "options": { + "platform": "ios" + }, + "configurations": { + "build": { + "copyTo": "./dist/build.ipa" + }, + "prod": { + "combineWithConfig": "build:prod" + } + } + }, + "android": { + "executor": "@nativescript/nx:build", + "options": { + "platform": "android" + }, + "configurations": { + "build": { + "copyTo": "./dist/build.apk" + }, + "prod": { + "combineWithConfig": "build:prod" + } + } + }, + "clean": { + "executor": "@nativescript/nx:build", + "options": { + "clean": true + } + }, + "lint": { + "executor": "@nrwl/linter:eslint", + "options": { + "lintFilePatterns": [ + "apps/nativescript-starter-solid/**/*.ts", + "apps/nativescript-starter-solid/src/**/*.html" + ] + } + } + } +}