-
Notifications
You must be signed in to change notification settings - Fork 0
/
angular.json
185 lines (185 loc) · 6.76 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
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"@bishares/my-example-runner": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
},
"root": "projects/@bishares/my-example-runner",
"sourceRoot": "projects/@bishares/my-example-runner/src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/@bishares/my-example-runner",
"index": "projects/@bishares/my-example-runner/src/index.html",
"main": "projects/@bishares/my-example-runner/src/main.ts",
"polyfills": "projects/@bishares/my-example-runner/src/polyfills.ts",
"tsConfig": "projects/@bishares/my-example-runner/tsconfig.app.json",
"aot": false,
"rebaseRootRelativeCssUrls": true,
"assets": [
"projects/@bishares/my-example-runner/src/favicon.ico",
"projects/@bishares/my-example-runner/src/favicon.svg",
"projects/@bishares/my-example-runner/src/assets",
{
"glob": "**/*",
"input": "./projects/@bishares/my-example-lib/assets/",
"output": "./assets/"
}
],
"styles": [
"./node_modules/material-design-icons/iconfont/material-icons.css",
"./node_modules/angular-tree-component/dist/angular-tree-component.css",
"./node_modules/normalize.css/normalize.css",
"projects/@bishares/my-example-runner/src/styles.scss",
"projects/@bishares/my-example-runner/src/trigger"
],
"scripts": [
"./node_modules/reflect-metadata/Reflect.js",
"./node_modules/systemjs/dist/system.js",
"./node_modules/jquery/dist/jquery.min.js",
"./node_modules/jquery/dist/jquery.slim.min.js",
"./node_modules/popper.js/dist/umd/popper.min.js",
"./node_modules/bootstrap/dist/js/bootstrap.min.js"
]
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "projects/@bishares/my-example-runner/src/environments/environment.ts",
"with": "projects/@bishares/my-example-runner/src/environments/environment.prod.ts"
}
],
"aot": true,
"optimization": false,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": true,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "10mb",
"maximumError": "100mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
}
]
}
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "@bishares/my-example-runner:build"
},
"configurations": {
"production": {
"browserTarget": "@bishares/my-example-runner:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "@bishares/my-example-runner:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/@bishares/my-example-runner/src/test.ts",
"polyfills": "projects/@bishares/my-example-runner/src/polyfills.ts",
"tsConfig": "projects/@bishares/my-example-runner/tsconfig.spec.json",
"karmaConfig": "projects/@bishares/my-example-runner/karma.conf.js",
"assets": [
"projects/@bishares/my-example-runner/src/favicon.ico",
"projects/@bishares/my-example-runner/src/favicon.svg",
"projects/@bishares/my-example-runner/src/assets"
],
"styles": [
"projects/@bishares/my-example-runner/src/styles.scss"
],
"scripts": []
}
},
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "projects/@bishares/my-example-runner/e2e/protractor.conf.js",
"devServerTarget": "@bishares/my-example-runner:serve"
},
"configurations": {
"production": {
"devServerTarget": "@bishares/my-example-runner:serve:production"
}
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"projects/@bishares/my-example-runner/**/*.ts",
"projects/@bishares/my-example-runner/**/*.component.html"
]
}
}
}
},
"@bishares/my-example-lib": {
"projectType": "library",
"root": "projects/@bishares/my-example-lib",
"sourceRoot": "projects/@bishares/my-example-lib/src",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
"options": {
"tsConfig": "projects/@bishares/my-example-lib/tsconfig.lib.json",
"project": "projects/@bishares/my-example-lib/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/@bishares/my-example-lib/tsconfig.lib.prod.json"
}
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/@bishares/my-example-lib/src/test.ts",
"tsConfig": "projects/@bishares/my-example-lib/tsconfig.spec.json",
"karmaConfig": "projects/@bishares/my-example-lib/karma.conf.js"
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"projects/@bishares/my-example-lib/**/*.ts",
"projects/@bishares/my-example-lib/**/*.component.html"
]
}
}
}
},
},
"defaultProject": "@bishares/my-example-runner",
"cli": {
"analytics": false
}
}