From f7c67839d8b42ae05851d7d5709c33cf8bd05e33 Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Mon, 8 Apr 2024 09:28:54 -0700 Subject: [PATCH] fix: solid project --- apps/nativescript-starter-solid/project.json | 51 ++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 apps/nativescript-starter-solid/project.json 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" + ] + } + } + } +}