-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
angular.json
157 lines (157 loc) Β· 4.99 KB
/
angular.json
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"my-angular-crasher": {
"root": "projects/my-angular-crasher",
"sourceRoot": "projects/my-angular-crasher/src",
"projectType": "application",
"prefix": "app",
"schematics": {},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/my-angular-crasher",
"index": "projects/my-angular-crasher/src/index.html",
"browser": "projects/my-angular-crasher/src/main.ts",
"sourceMap": true,
"polyfills": ["projects/my-angular-crasher/src/polyfills.ts"],
"tsConfig": "projects/my-angular-crasher/tsconfig.app.json",
"assets": [
"projects/my-angular-crasher/src/favicon.ico",
"projects/my-angular-crasher/src/assets"
],
"styles": [
"projects/my-angular-crasher/src/styles.css"
],
"scripts": [],
"extractLicenses": false,
"optimization": false,
"namedChunks": true
},
"configurations": {
"development": {},
"production": {
"budgets": [
{
"type": "anyComponentStyle",
"maximumWarning": "6kb"
}
],
"fileReplacements": [
{
"replace": "projects/my-angular-crasher/src/environments/environment.ts",
"with": "projects/my-angular-crasher/src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": true,
"namedChunks": false,
"extractLicenses": true
}
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"buildTarget": "my-angular-crasher:build"
},
"configurations": {
"production": {
"buildTarget": "my-angular-crasher:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"buildTarget": "my-angular-crasher:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/my-angular-crasher/src/test.ts",
"polyfills": "projects/my-angular-crasher/src/polyfills.ts",
"tsConfig": "projects/my-angular-crasher/tsconfig.spec.json",
"karmaConfig": "projects/my-angular-crasher/karma.conf.js",
"styles": [
"projects/my-angular-crasher/src/styles.css"
],
"scripts": [],
"assets": [
"projects/my-angular-crasher/src/favicon.ico",
"projects/my-angular-crasher/src/assets"
]
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"projects/my-angular-crasher/**/*.ts",
"projects/my-angular-crasher/**/*.html"
]
}
}
}
},
"bugsplat-ng": {
"root": "projects/bugsplat-ng",
"sourceRoot": "projects/bugsplat-ng/src",
"projectType": "library",
"prefix": "bug",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"project": "projects/bugsplat-ng/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/bugsplat-ng/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "projects/bugsplat-ng/tsconfig.lib.json"
}
},
"defaultConfiguration": "production"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/bugsplat-ng/src/test.ts",
"tsConfig": "projects/bugsplat-ng/tsconfig.spec.json",
"karmaConfig": "projects/bugsplat-ng/karma.conf.js"
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"projects/bugsplat-ng/**/*.ts",
"projects/bugsplat-ng/**/*.html"
]
}
}
}
}
},
"cli": {
"analytics": "05c6acf5-d643-470e-b261-021c03f97339",
"schematicCollections": [
"@angular-eslint/schematics"
]
},
"schematics": {
"@angular-eslint/schematics:application": {
"setParserOptionsProject": true
},
"@angular-eslint/schematics:library": {
"setParserOptionsProject": true
}
}
}