-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.json
63 lines (63 loc) · 1.26 KB
/
project.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "demo-vue",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"sourceRoot": "apps/demo-vue/src",
"targets": {
"build": {
"executor": "@nativescript/nx:build",
"options": {
"noHmr": true,
"production": true,
"uglify": true,
"release": true,
"forDevice": true
},
"dependsOn": [
{
"target": "build.all",
"projects": "dependencies"
}
]
},
"ios": {
"executor": "@nativescript/nx:build",
"options": {
"platform": "ios"
},
"dependsOn": [
{
"target": "build.all",
"projects": "dependencies"
}
]
},
"android": {
"executor": "@nativescript/nx:build",
"options": {
"platform": "android"
},
"dependsOn": [
{
"target": "build.all",
"projects": "dependencies"
}
]
},
"clean": {
"executor": "@nativescript/nx:build",
"options": {
"clean": true
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"apps/demo-vue/**/*.ts"
]
}
}
},
"tags": []
}