-
Notifications
You must be signed in to change notification settings - Fork 11
/
angular.json
203 lines (203 loc) · 6.64 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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"@ngx-builders/ngx-bulma": {
"projectType": "library",
"root": "projects/ngx-bulma",
"sourceRoot": "projects/ngx-bulma/src",
"prefix": "bu",
"schematics": {
"@schematics/angular:component": {
"viewEncapsulation": "None",
"changeDetection": "OnPush",
"export": true,
"prefix": "bu"
},
"@schematics/angular:directive": {
"viewEncapsulation": "None",
"export": true,
"prefix": "bu"
}
},
"architect": {
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
"options": {
"tsConfig": "projects/ngx-bulma/tsconfig.lib.json",
"project": "projects/ngx-bulma/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/ngx-bulma/tsconfig.lib.prod.json"
}
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/ngx-bulma/src/test.ts",
"tsConfig": "projects/ngx-bulma/tsconfig.spec.json",
"karmaConfig": "projects/ngx-bulma/karma.conf.js"
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"projects/ngx-bulma/tsconfig.lib.json",
"projects/ngx-bulma/tsconfig.spec.json"
],
"exclude": ["**/node_modules/**"]
}
}
}
},
"bulma-app": {
"projectType": "application",
"schematics": {},
"root": "projects/bulma-app",
"sourceRoot": "projects/bulma-app/src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/bulma-app",
"index": "projects/bulma-app/src/index.html",
"main": "projects/bulma-app/src/main.ts",
"polyfills": "projects/bulma-app/src/polyfills.ts",
"tsConfig": "projects/bulma-app/tsconfig.app.json",
"aot": true,
"assets": [
"projects/bulma-app/src/favicon.ico",
"projects/bulma-app/src/assets",
"projects/bulma-app/src/_redirects"
],
"styles": [
"projects/bulma-app/src/styles.scss",
"node_modules/@fortawesome/fontawesome-free/css/all.css",
"node_modules/bulma/css/bulma.css",
"node_modules/prism-themes/themes/prism-material-light.css",
"node_modules/prismjs/plugins/line-numbers/prism-line-numbers.css",
"node_modules/prismjs/plugins/toolbar/prism-toolbar.css"
],
"scripts": [
"node_modules/marked/lib/marked.js",
"node_modules/prismjs/prism.js",
"node_modules/prismjs/plugins/line-numbers/prism-line-numbers.js",
"node_modules/prismjs/plugins/toolbar/prism-toolbar.min.js",
"node_modules/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.min.js"
]
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "projects/bulma-app/src/environments/environment.ts",
"with": "projects/bulma-app/src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
}
]
}
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "bulma-app:build"
},
"configurations": {
"production": {
"browserTarget": "bulma-app:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "bulma-app:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/bulma-app/src/test.ts",
"polyfills": "projects/bulma-app/src/polyfills.ts",
"tsConfig": "projects/bulma-app/tsconfig.spec.json",
"karmaConfig": "projects/bulma-app/karma.conf.js",
"assets": ["projects/bulma-app/src/favicon.ico", "projects/bulma-app/src/assets"],
"styles": ["projects/bulma-app/src/styles.scss"],
"scripts": []
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"projects/bulma-app/tsconfig.app.json",
"projects/bulma-app/tsconfig.spec.json",
"projects/bulma-app/e2e/tsconfig.json"
],
"exclude": ["**/node_modules/**"]
}
},
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "projects/bulma-app/e2e/protractor.conf.js",
"devServerTarget": "bulma-app:serve"
},
"configurations": {
"production": {
"devServerTarget": "bulma-app:serve:production"
}
}
},
"analyze": {
"builder": "@ngx-builders/analyze:analyze",
"options": {
"outputPath": "dist/bulma-app"
}
}
}
}
},
"defaultProject": "@ngx-builders/ngx-bulma",
"schematics": {
"@nrwl/angular:application": {
"unitTestRunner": "jest",
"e2eTestRunner": "cypress"
},
"@nrwl/angular:library": {
"unitTestRunner": "jest"
},
"@schematics/angular:component": {
"styleext": "scss"
}
},
"cli": {
"defaultCollection": "@nrwl/angular",
"analytics": false
}
}