etf-demo/angular.json

74 lines
2.7 KiB
JSON
Raw Normal View History

2018-11-29 15:00:06 -05:00
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"proj": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
2018-11-29 15:00:06 -05:00
}
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist",
"index": "src/index.html",
"browser": "src/main.ts",
"polyfills": ["zone.js"],
"tsConfig": "tsconfig.json",
"inlineStyleLanguage": "scss",
"assets": [
"src/assets"
],
"styles": [
"src/styles.scss"
],
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
}
],
"outputHashing": "all"
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"buildTarget": "proj:build:production"
},
"development": {
"buildTarget": "proj:build:development"
}
},
"defaultConfiguration": "development"
2018-11-29 15:00:06 -05:00
}
}
}
}
2018-11-29 18:04:17 -05:00
}