1
1
{
2
- "$schema" : " ./node_modules/@angular/cli/lib/config/schema.json" ,
3
- "version" : 1 ,
4
- "newProjectRoot" : " projects" ,
5
- "projects" : {
6
- "flights" : {
7
- "projectType" : " application" ,
8
- "schematics" : {},
9
- "root" : " " ,
10
- "sourceRoot" : " src" ,
11
- "prefix" : " app" ,
12
- "architect" : {
13
- "build" : {
14
- "builder" : " @angular-devkit/build-angular:browser" ,
15
- "options" : {
16
- "outputPath" : " dist/flights" ,
17
- "index" : " src/index.html" ,
18
- "main" : " src/main.ts" ,
19
- "polyfills" : [
20
- " zone.js"
21
- ],
22
- "tsConfig" : " tsconfig.app.json" ,
23
- "assets" : [
24
- " src/favicon.ico" ,
25
- " src/assets"
26
- ],
27
- "styles" : [
28
- " node_modules/@angular-architects/paper-design/assets/css/bootstrap.css" ,
29
- " node_modules/@angular-architects/paper-design/assets/scss/paper-dashboard.scss" ,
30
- " src/styles.css"
31
- ],
32
- "scripts" : []
33
- },
34
- "configurations" : {
35
- "production" : {
36
- "budgets" : [
37
- {
38
- "type" : " initial" ,
39
- "maximumWarning" : " 500kb" ,
40
- "maximumError" : " 1mb"
41
- },
42
- {
43
- "type" : " anyComponentStyle" ,
44
- "maximumWarning" : " 2kb" ,
45
- "maximumError" : " 4kb"
46
- }
47
- ],
48
- "outputHashing" : " all"
49
- },
50
- "development" : {
51
- "buildOptimizer" : false ,
52
- "optimization" : false ,
53
- "vendorChunk" : true ,
54
- "extractLicenses" : false ,
55
- "sourceMap" : true ,
56
- "namedChunks" : true
57
- }
58
- },
59
- "defaultConfiguration" : " production"
60
- },
61
- "serve" : {
62
- "builder" : " @angular-devkit/build-angular:dev-server" ,
63
- "configurations" : {
64
- "production" : {
65
- "browserTarget" : " flights:build:production"
66
- },
67
- "development" : {
68
- "browserTarget" : " flights:build:development"
69
- }
70
- },
71
- "defaultConfiguration" : " development"
72
- },
73
- "extract-i18n" : {
74
- "builder" : " @angular-devkit/build-angular:extract-i18n" ,
75
- "options" : {
76
- "browserTarget" : " flights:build"
77
- }
78
- },
79
- "test" : {
80
- "builder" : " @angular-devkit/build-angular:karma" ,
81
- "options" : {
82
- "polyfills" : [
83
- " zone.js" ,
84
- " zone.js/testing"
85
- ],
86
- "tsConfig" : " tsconfig.spec.json" ,
87
- "assets" : [
88
- " src/favicon.ico" ,
89
- " src/assets"
90
- ],
91
- "styles" : [
92
- " src/styles.css"
93
- ],
94
- "scripts" : []
95
- }
96
- }
97
- }
98
- }
99
- }
100
- }
2
+ "$schema" : " ./node_modules/@angular/cli/lib/config/schema.json" ,
3
+ "version" : 1 ,
4
+ "newProjectRoot" : " projects" ,
5
+ "projects" : {
6
+ "flights" : {
7
+ "projectType" : " application" ,
8
+ "schematics" : {
9
+ "@schematics/angular:component" : {
10
+ "standalone" : true
11
+ },
12
+ "@schematics/angular:directive" : {
13
+ "standalone" : true
14
+ },
15
+ "@schematics/angular:pipe" : {
16
+ "standalone" : true
17
+ }
18
+ },
19
+ "root" : " " ,
20
+ "sourceRoot" : " src" ,
21
+ "prefix" : " app" ,
22
+ "architect" : {
23
+ "build" : {
24
+ "builder" : " @angular-devkit/build-angular:browser" ,
25
+ "options" : {
26
+ "outputPath" : " dist/flights" ,
27
+ "index" : " src/index.html" ,
28
+ "main" : " src/main.ts" ,
29
+ "polyfills" : [" zone.js" ],
30
+ "tsConfig" : " tsconfig.app.json" ,
31
+ "assets" : [" src/favicon.ico" , " src/assets" ],
32
+ "styles" : [
33
+ " @angular/material/prebuilt-themes/indigo-pink.css" ,
34
+ " node_modules/@angular-architects/paper-design/assets/css/bootstrap.css" ,
35
+ " node_modules/@angular-architects/paper-design/assets/scss/paper-dashboard.scss" ,
36
+ " src/styles.css"
37
+ ],
38
+ "scripts" : []
39
+ },
40
+ "configurations" : {
41
+ "production" : {
42
+ "budgets" : [
43
+ {
44
+ "type" : " initial" ,
45
+ "maximumWarning" : " 500kb" ,
46
+ "maximumError" : " 1mb"
47
+ },
48
+ {
49
+ "type" : " anyComponentStyle" ,
50
+ "maximumWarning" : " 2kb" ,
51
+ "maximumError" : " 4kb"
52
+ }
53
+ ],
54
+ "outputHashing" : " all"
55
+ },
56
+ "development" : {
57
+ "buildOptimizer" : false ,
58
+ "optimization" : false ,
59
+ "vendorChunk" : true ,
60
+ "extractLicenses" : false ,
61
+ "sourceMap" : true ,
62
+ "namedChunks" : true
63
+ }
64
+ },
65
+ "defaultConfiguration" : " production"
66
+ },
67
+ "serve" : {
68
+ "builder" : " @angular-devkit/build-angular:dev-server" ,
69
+ "configurations" : {
70
+ "production" : {
71
+ "browserTarget" : " flights:build:production"
72
+ },
73
+ "development" : {
74
+ "browserTarget" : " flights:build:development"
75
+ }
76
+ },
77
+ "defaultConfiguration" : " development"
78
+ },
79
+ "extract-i18n" : {
80
+ "builder" : " @angular-devkit/build-angular:extract-i18n" ,
81
+ "options" : {
82
+ "browserTarget" : " flights:build"
83
+ }
84
+ },
85
+ "test" : {
86
+ "builder" : " @angular-devkit/build-angular:karma" ,
87
+ "options" : {
88
+ "polyfills" : [" zone.js" , " zone.js/testing" ],
89
+ "tsConfig" : " tsconfig.spec.json" ,
90
+ "assets" : [" src/favicon.ico" , " src/assets" ],
91
+ "styles" : [
92
+ " @angular/material/prebuilt-themes/indigo-pink.css" ,
93
+ " src/styles.css"
94
+ ],
95
+ "scripts" : []
96
+ }
97
+ }
98
+ }
99
+ }
100
+ }
101
+ }
0 commit comments