-
Notifications
You must be signed in to change notification settings - Fork 334
/
angular.json
189 lines (189 loc) · 5.97 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
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"doubtfire": {
"root": "",
"sourceRoot": "src",
"projectType": "application",
"prefix": "f",
"schematics": {
"@schematics/angular:application": {
"strict": false
}
},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist",
"index": "build/index.html",
"browser": "src/main.ts",
"polyfills": ["src/polyfills.ts"],
"tsConfig": "src/tsconfig.app.json",
"assets": [
"src/assets",
"src/manifest.webmanifest"
],
"styles": [
"src/theme.scss",
"src/styles.scss",
"./node_modules/bootstrap/dist/css/bootstrap.css",
"./node_modules/ngx-bootstrap/datepicker/bs-datepicker.css",
"./build/assets/doubtfire.css",
"./build/assets/node_modules/angular-xeditable/dist/css/xeditable.css",
"./build/assets/node_modules/codemirror/lib/codemirror.css",
"./build/assets/node_modules/codemirror/theme/xq-light.css",
"./build/assets/node_modules/nvd3/build/nv.d3.css",
"node_modules/@ctrl/ngx-emoji-mart/picker.css"
],
"scripts": [
"node_modules/moment/moment.js",
"node_modules/d3/d3.js",
"node_modules/lodash/lodash.js",
"node_modules/underscore.string/dist/underscore.string.min.js",
"node_modules/nvd3/build/nv.d3.js",
"node_modules/es5-shim/es5-shim.js",
"node_modules/codemirror/lib/codemirror.js",
"node_modules/codemirror/addon/display/placeholder.js",
"node_modules/codemirror/mode/markdown/markdown.js",
"node_modules/canvas-confetti/dist/confetti.browser.js"
],
"extractLicenses": false,
"sourceMap": true,
"optimization": false
},
"configurations": {
"production": {
"budgets": [
{
"type": "anyComponentStyle",
"maximumWarning": "6kb"
}
],
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
},
{
"replace": "src/app/config/constants/apiURL.ts",
"with": "src/app/config/constants/apiURL.prod.ts"
}
],
"optimization": true,
"outputHashing": "bundles",
"sourceMap": false,
"extractLicenses": true,
"serviceWorker": "ngsw-config.json"
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
},
"devcontainer": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true,
"fileReplacements": [
{
"replace": "src/app/config/constants/apiURL.ts",
"with": "src/app/config/constants/apiURL.devcontainer.ts"
}
]
}
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"buildTarget": "doubtfire:build",
"port": 4200,
"host": "0.0.0.0"
},
"configurations": {
"development": {
"buildTarget": "doubtfire:build:development"
},
"production": {
"buildTarget": "doubtfire:build:production"
},
"docker": {
"buildTarget": "doubtfire:build:development"
},
"devcontainer": {
"buildTarget": "doubtfire:build:devcontainer",
"port": 4201,
"host": "localhost"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"buildTarget": "doubtfire:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.spec.json",
"karmaConfig": "src/karma.conf.js",
"styles": [
"./node_modules/bootstrap/dist/css/bootstrap.css",
"./node_modules/ngx-bootstrap/datepicker/bs-datepicker.css"
],
"scripts": [],
"assets": [
"src/favicon.ico",
"src/assets",
"src/manifest.webmanifest"
]
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"src/**/*.ts",
"src/**/*.component.html"
]
}
},
"eslint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"src/**/*.ts",
"src/**/*.component.html"
]
}
}
}
}
},
"schematics": {
"@schematics/angular:component": {
"style": "scss"
},
"@angular-eslint/schematics:application": {
"setParserOptionsProject": true
},
"@angular-eslint/schematics:library": {
"setParserOptionsProject": true
}
},
"cli": {
"analytics": "d9f70e12-eb87-48a0-a953-29ebd31202d7",
"cache": {
"enabled": true
},
"schematicCollections": [
"@angular-eslint/schematics"
]
}
}