1
+ {
2
+ "$schema" : " ./node_modules/@angular/cli/lib/config/schema.json" ,
3
+ "version" : 1 ,
4
+ "newProjectRoot" : " projects" ,
5
+ "projects" : {
6
+ "nice-admin-angular" : {
7
+ "root" : " " ,
8
+ "sourceRoot" : " src" ,
9
+ "projectType" : " application" ,
10
+ "prefix" : " app" ,
11
+ "schematics" : {},
12
+ "architect" : {
13
+ "build" : {
14
+ "builder" : " @angular-devkit/build-angular:browser" ,
15
+ "options" : {
16
+ "aot" : true ,
17
+ "allowedCommonJsDependencies" : [
18
+ " rxjs-compat" ,
19
+ " rxjs" ,
20
+ " ng2-charts" ,
21
+ " chart.js"
22
+ ],
23
+ "outputPath" : " dist/" ,
24
+ "index" : " src/index.html" ,
25
+ "main" : " src/main.ts" ,
26
+ "polyfills" : " src/polyfills.ts" ,
27
+ "tsConfig" : " src/tsconfig.app.json" ,
28
+ "assets" : [
29
+ " src/favicon.ico" ,
30
+ " src/assets"
31
+ ],
32
+ "styles" : [
33
+ " src/assets/scss/style.scss"
34
+ ],
35
+ "scripts" : []
36
+ },
37
+ "configurations" : {
38
+ "production" : {
39
+ "budgets" : [
40
+ {
41
+ "type" : " anyComponentStyle" ,
42
+ "maximumWarning" : " 6kb"
43
+ }
44
+ ],
45
+ "fileReplacements" : [
46
+ {
47
+ "replace" : " src/environments/environment.ts" ,
48
+ "with" : " src/environments/environment.prod.ts"
49
+ }
50
+ ],
51
+ "optimization" : true ,
52
+ "outputHashing" : " all" ,
53
+ "sourceMap" : false ,
54
+ "namedChunks" : false ,
55
+ "aot" : true ,
56
+ "extractLicenses" : true ,
57
+ "vendorChunk" : false ,
58
+ "buildOptimizer" : true
59
+ }
60
+ }
61
+ },
62
+ "serve" : {
63
+ "builder" : " @angular-devkit/build-angular:dev-server" ,
64
+ "options" : {
65
+ "browserTarget" : " nice-admin-angular:build"
66
+ },
67
+ "configurations" : {
68
+ "production" : {
69
+ "browserTarget" : " nice-admin-angular:build:production"
70
+ }
71
+ }
72
+ },
73
+ "extract-i18n" : {
74
+ "builder" : " @angular-devkit/build-angular:extract-i18n" ,
75
+ "options" : {
76
+ "browserTarget" : " nice-admin-angular:build"
77
+ }
78
+ },
79
+ "test" : {
80
+ "builder" : " @angular-devkit/build-angular:karma" ,
81
+ "options" : {
82
+ "main" : " src/test.ts" ,
83
+ "polyfills" : " src/polyfills.ts" ,
84
+ "tsConfig" : " src/tsconfig.spec.json" ,
85
+ "karmaConfig" : " src/karma.conf.js" ,
86
+ "styles" : [
87
+ " src/styles.css"
88
+ ],
89
+ "scripts" : [],
90
+ "assets" : [
91
+ " src/favicon.ico" ,
92
+ " src/assets"
93
+ ]
94
+ }
95
+ },
96
+ "lint" : {
97
+ "builder" : " @angular-devkit/build-angular:tslint" ,
98
+ "options" : {
99
+ "tsConfig" : [
100
+ " src/tsconfig.app.json" ,
101
+ " src/tsconfig.spec.json"
102
+ ],
103
+ "exclude" : [
104
+ " **/node_modules/**"
105
+ ]
106
+ }
107
+ }
108
+ }
109
+ },
110
+ "nice-admin-angular-e2e" : {
111
+ "root" : " e2e/" ,
112
+ "projectType" : " application" ,
113
+ "architect" : {
114
+ "e2e" : {
115
+ "builder" : " @angular-devkit/build-angular:protractor" ,
116
+ "options" : {
117
+ "protractorConfig" : " e2e/protractor.conf.js" ,
118
+ "devServerTarget" : " nice-admin-angular:serve"
119
+ }
120
+ },
121
+ "lint" : {
122
+ "builder" : " @angular-devkit/build-angular:tslint" ,
123
+ "options" : {
124
+ "tsConfig" : " e2e/tsconfig.e2e.json" ,
125
+ "exclude" : [
126
+ " **/node_modules/**"
127
+ ]
128
+ }
129
+ }
130
+ }
131
+ }
132
+ },
133
+ "defaultProject" : " nice-admin-angular" ,
134
+ "cli" : {
135
+ "analytics" : false
136
+ }
137
+ }
0 commit comments