Skip to content
Open
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/.angular/cache
# Output Directories #
build/
dist/
Expand Down
18 changes: 11 additions & 7 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,10 @@
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"aot": true,
"outputPath": "dist/demo",
"index": "src/demo/index.html",
"main": "src/demo/main.ts",
"tsConfig": "src/demo/tsconfig.app.json",
"showCircularDependencies": false,
"polyfills": "src/demo/polyfills.ts",
"assets": [
"src/demo/assets",
Expand All @@ -27,7 +25,13 @@
"node_modules/@angular/material/prebuilt-themes/indigo-pink.css",
"src/demo/styles.scss"
],
"scripts": []
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
Expand All @@ -41,7 +45,6 @@
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
Expand All @@ -52,7 +55,8 @@
}
]
}
}
},
"defaultConfiguration": ""
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
Expand Down Expand Up @@ -107,9 +111,9 @@
"projectType": "application"
}
},
"defaultProject": "demo",
"cli": {
"warnings": {}
"warnings": {},
"analytics": false
},
"schematics": {
"@schematics/angular:component": {
Expand Down
Loading