-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathproject.json
More file actions
71 lines (71 loc) · 1.97 KB
/
Copy pathproject.json
File metadata and controls
71 lines (71 loc) · 1.97 KB
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
64
65
66
67
68
69
70
71
{
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"name": "app-ionic-angular",
"projectType": "application",
"sourceRoot": "apps/ionic-angular/src",
"targets": {
"build": {
"builder": "",
"executor": "@angular-builders/custom-webpack:browser",
"dependsOn": ["sdk-angular:build"],
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "apps/ionic-angular/dist",
"deleteOutputPath": false,
"index": "apps/ionic-angular/src/index.html",
"main": "apps/ionic-angular/src/main.ts",
"polyfills": ["zone.js"],
"tsConfig": "apps/ionic-angular/tsconfig.json",
"customWebpackConfig": {
"path": "apps/ionic-angular/webpack.config.cjs"
}
},
"configurations": {
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
}
},
"defaultConfiguration": "development"
},
"serve": {
"executor": "@angular-builders/custom-webpack:dev-server",
"dependsOn": ["sdk-angular:build"],
"configurations": {
"production": {
"buildTarget": "app-angular:build:production"
},
"development": {
"buildTarget": "app-angular:build:development"
}
},
"defaultConfiguration": "development"
},
"serve-static": {
"executor": "@nx/web:file-server",
"options": {
"buildTarget": "app-angular:build",
"port": 4200,
"staticFilePath": "dist/apps/ionic-angular/browser",
"spa": true
}
},
"android:run": {
"executor": "nx:run-commands",
"dependsOn": ["build"],
"options": {
"cwd": "apps/ionic-angular",
"command": "cap run android"
}
},
"ios:run": {
"executor": "nx:run-commands",
"dependsOn": ["build"],
"options": {
"cwd": "apps/ionic-angular",
"command": "cap run ios"
}
}
}
}