-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathproject.json
More file actions
80 lines (80 loc) · 1.98 KB
/
project.json
File metadata and controls
80 lines (80 loc) · 1.98 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
72
73
74
75
76
77
78
79
80
{
"$schema": "node_modules/nx/schemas/project-schema.json",
"name": "phenoboard",
"projectType": "application",
"sourceRoot": "src",
"prefix": "app",
"generators": {
"@schematics/angular:component": {
"style": "scss"
}
},
"targets": {
"build": {
"executor": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/phenoboard",
"index": "src/index.html",
"browser": "src/main.ts",
"polyfills": [
"zone.js"
],
"tsConfig": "tsconfig.app.json",
"assets": [
"src/assets"
],
"styles": [
"@angular/material/prebuilt-themes/indigo-pink.css",
"src/styles.scss",
"node_modules/material-icons/iconfont/material-icons.css"
]
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "3mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "20kb",
"maximumError": "150kb"
}
],
"outputHashing": "all",
"optimization": {
"scripts": true,
"styles": {
"minify": true,
"inlineCritical": false
},
"fonts": true
}
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"executor": "@angular-devkit/build-angular:dev-server",
"options": {
"port": 1420
},
"configurations": {
"production": {
"buildTarget": "phenoboard:build:production"
},
"development": {
"buildTarget": "phenoboard:build:development"
}
},
"defaultConfiguration": "development"
}
}
}