8
8
"projects" : {
9
9
"angular" : {
10
10
"projectType" : " application" ,
11
- "schematics" : {},
11
+ "schematics" : {
12
+ "@schematics/angular:component" : {
13
+ "standalone" : true
14
+ },
15
+ "@schematics/angular:directive" : {
16
+ "standalone" : true
17
+ },
18
+ "@schematics/angular:pipe" : {
19
+ "standalone" : true
20
+ }
21
+ },
12
22
"root" : " " ,
13
23
"sourceRoot" : " src" ,
14
24
"prefix" : " app" ,
19
29
"outputPath" : " dist/angular" ,
20
30
"index" : " src/index.html" ,
21
31
"main" : " src/main.ts" ,
22
- "polyfills" : " src/polyfills.ts " ,
32
+ "polyfills" : [] ,
23
33
"tsConfig" : " tsconfig.app.json" ,
24
- "aot" : false ,
25
34
"assets" : [
26
- { "glob" : " **/*" , "input" : " src/css/" , "output" : " /css/" }
27
- ],
28
- "styles" : [
35
+ " src/assets"
29
36
],
37
+ "styles" : [],
30
38
"scripts" : []
31
39
},
32
40
"configurations" : {
33
41
"production" : {
34
- "optimization" : true ,
35
- "outputHashing" : " all" ,
36
- "sourceMap" : false ,
37
- "namedChunks" : false ,
38
- "aot" : true ,
39
- "extractLicenses" : true ,
40
- "vendorChunk" : false ,
41
- "buildOptimizer" : true ,
42
42
"budgets" : [
43
43
{
44
44
"type" : " initial" ,
45
- "maximumWarning" : " 2mb " ,
46
- "maximumError" : " 5mb "
45
+ "maximumWarning" : " 500kb " ,
46
+ "maximumError" : " 1mb "
47
47
},
48
48
{
49
49
"type" : " anyComponentStyle" ,
50
- "maximumWarning" : " 6kb " ,
51
- "maximumError" : " 10kb "
50
+ "maximumWarning" : " 2kb " ,
51
+ "maximumError" : " 4kb "
52
52
}
53
- ]
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
54
63
}
55
- }
64
+ },
65
+ "defaultConfiguration" : " production"
56
66
},
57
67
"serve" : {
58
68
"builder" : " @angular-devkit/build-angular:dev-server" ,
59
- "options" : {
60
- "browserTarget" : " angular:build"
61
- },
62
69
"configurations" : {
63
70
"production" : {
64
71
"browserTarget" : " angular:build:production"
72
+ },
73
+ "development" : {
74
+ "browserTarget" : " angular:build:development"
65
75
}
66
- }
76
+ },
77
+ "defaultConfiguration" : " development"
67
78
},
68
79
"extract-i18n" : {
69
80
"builder" : " @angular-devkit/build-angular:extract-i18n" ,
74
85
}
75
86
}
76
87
}
77
- }
88
+ }
0 commit comments