UNPKG

922 BJSONView Raw
1{
2 "$schema": "../schemas/app-project-config-schema.json#",
3 "platformTarget": "web",
4 "root": "src",
5 "outputPath": "dist",
6 "entry": "main.ts",
7 "polyfills": [
8 "polyfills.ts"
9 ],
10 "tsConfig": "tsconfig.app.json",
11 "copy": [
12 "assets/**/*",
13 "favicon.ico"
14 ],
15 "styles": [
16 "styles.css"
17 ],
18 "publicPath": "/",
19 "baseHref": "/",
20 "htmlInject": {
21 "resourceHints": true,
22 "index": "index.html"
23 },
24 "envOverrides": {
25 "prod": {
26 "optimization": true,
27 "aot": true,
28 "extractCss": true,
29 "buildOptimizer": true,
30 "sourceMap": false,
31 "namedChunks": false,
32 "vendorChunk": false,
33 "outputHashing": {
34 "bundles": true,
35 "chunks": true,
36 "extractedAssets": true
37 },
38 "fileReplacements": [{
39 "replace": "./environments/environment.ts",
40 "with": "./environments/environment.prod.ts"
41 }]
42 }
43 }
44}