1+ {
2+ "$schema" : " ./node_modules/@angular/cli/lib/config/schema.json" ,
3+ "version" : 1 ,
4+ "newProjectRoot" : " projects" ,
5+ "projects" : {
6+ "angular-change-detection-demos" : {
7+ "projectType" : " application" ,
8+ "schematics" : {
9+ "@schematics/angular:component" : {
10+ "inlineTemplate" : true ,
11+ "inlineStyle" : true ,
12+ "skipTests" : true
13+ },
14+ "@schematics/angular:class" : {
15+ "skipTests" : true
16+ },
17+ "@schematics/angular:directive" : {
18+ "skipTests" : true
19+ },
20+ "@schematics/angular:guard" : {
21+ "skipTests" : true
22+ },
23+ "@schematics/angular:interceptor" : {
24+ "skipTests" : true
25+ },
26+ "@schematics/angular:module" : {
27+ "skipTests" : true
28+ },
29+ "@schematics/angular:pipe" : {
30+ "skipTests" : true
31+ },
32+ "@schematics/angular:service" : {
33+ "skipTests" : true
34+ }
35+ },
36+ "root" : " " ,
37+ "sourceRoot" : " src" ,
38+ "prefix" : " app" ,
39+ "architect" : {
40+ "build" : {
41+ "builder" : " @angular-devkit/build-angular:browser" ,
42+ "options" : {
43+ "outputPath" : " dist/angular-change-detection-demos" ,
44+ "index" : " src/index.html" ,
45+ "main" : " src/main.ts" ,
46+ "polyfills" : " src/polyfills.ts" ,
47+ "tsConfig" : " tsconfig.app.json" ,
48+ "aot" : true ,
49+ "assets" : [
50+ " src/favicon.ico" ,
51+ " src/assets"
52+ ],
53+ "styles" : [
54+ " src/styles.css"
55+ ],
56+ "scripts" : []
57+ },
58+ "configurations" : {
59+ "production" : {
60+ "fileReplacements" : [
61+ {
62+ "replace" : " src/environments/environment.ts" ,
63+ "with" : " src/environments/environment.prod.ts"
64+ }
65+ ],
66+ "optimization" : true ,
67+ "outputHashing" : " all" ,
68+ "sourceMap" : false ,
69+ "extractCss" : true ,
70+ "namedChunks" : false ,
71+ "extractLicenses" : true ,
72+ "vendorChunk" : false ,
73+ "buildOptimizer" : true ,
74+ "budgets" : [
75+ {
76+ "type" : " initial" ,
77+ "maximumWarning" : " 2mb" ,
78+ "maximumError" : " 5mb"
79+ },
80+ {
81+ "type" : " anyComponentStyle" ,
82+ "maximumWarning" : " 6kb" ,
83+ "maximumError" : " 10kb"
84+ }
85+ ]
86+ }
87+ }
88+ },
89+ "serve" : {
90+ "builder" : " @angular-devkit/build-angular:dev-server" ,
91+ "options" : {
92+ "browserTarget" : " angular-change-detection-demos:build"
93+ },
94+ "configurations" : {
95+ "production" : {
96+ "browserTarget" : " angular-change-detection-demos:build:production"
97+ }
98+ }
99+ },
100+ "extract-i18n" : {
101+ "builder" : " @angular-devkit/build-angular:extract-i18n" ,
102+ "options" : {
103+ "browserTarget" : " angular-change-detection-demos:build"
104+ }
105+ }
106+ }
107+ }
108+ },
109+ "defaultProject" : " angular-change-detection-demos" ,
110+ "cli" : {
111+ "analytics" : false
112+ }
113+ }
0 commit comments