Skip to content

Commit f7c6783

Browse files
committed
fix: solid project
1 parent d2e7423 commit f7c6783

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"name": "nativescript-starter-solid",
3+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
4+
"sourceRoot": "apps/nativescript-starter-solid/src",
5+
"projectType": "application",
6+
"targets": {
7+
"ios": {
8+
"executor": "@nativescript/nx:build",
9+
"options": {
10+
"platform": "ios"
11+
},
12+
"configurations": {
13+
"build": {
14+
"copyTo": "./dist/build.ipa"
15+
},
16+
"prod": {
17+
"combineWithConfig": "build:prod"
18+
}
19+
}
20+
},
21+
"android": {
22+
"executor": "@nativescript/nx:build",
23+
"options": {
24+
"platform": "android"
25+
},
26+
"configurations": {
27+
"build": {
28+
"copyTo": "./dist/build.apk"
29+
},
30+
"prod": {
31+
"combineWithConfig": "build:prod"
32+
}
33+
}
34+
},
35+
"clean": {
36+
"executor": "@nativescript/nx:build",
37+
"options": {
38+
"clean": true
39+
}
40+
},
41+
"lint": {
42+
"executor": "@nrwl/linter:eslint",
43+
"options": {
44+
"lintFilePatterns": [
45+
"apps/nativescript-starter-solid/**/*.ts",
46+
"apps/nativescript-starter-solid/src/**/*.html"
47+
]
48+
}
49+
}
50+
}
51+
}

0 commit comments

Comments
 (0)