Skip to content

Commit

Permalink
fix: solid project
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanWalker committed Apr 8, 2024
1 parent d2e7423 commit f7c6783
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions apps/nativescript-starter-solid/project.json
Original file line number Diff line number Diff line change
@@ -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"
]
}
}
}
}

0 comments on commit f7c6783

Please sign in to comment.