srumboard_frontend/angular.json

119 lines
3.5 KiB
JSON
Raw Permalink Normal View History

2020-06-01 13:12:11 +00:00
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"frontend": {
"projectType": "application",
"schematics": {},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/frontend",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"preserveSymlinks": true,
2020-06-01 13:12:11 +00:00
"aot": true,
2020-07-10 20:49:11 +00:00
"assets": ["src/favicon.ico", "src/assets"],
2020-06-01 13:12:11 +00:00
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
2020-07-02 09:39:58 +00:00
"src/styles.scss",
2020-06-30 10:55:44 +00:00
"src/assets/scss/black-dashboard.scss"
2020-06-01 13:12:11 +00:00
],
2020-07-10 20:49:11 +00:00
"scripts": []
2020-06-01 13:12:11 +00:00
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
}
]
}
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "frontend:build"
},
"configurations": {
"production": {
"browserTarget": "frontend:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "frontend:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js",
2020-07-10 20:49:11 +00:00
"assets": ["src/favicon.ico", "src/assets"],
"styles": ["src/styles.scss"],
2020-06-01 13:12:11 +00:00
"scripts": []
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"tsconfig.app.json",
"tsconfig.spec.json",
"e2e/tsconfig.json"
],
2020-07-10 20:49:11 +00:00
"exclude": ["**/node_modules/**"]
2020-06-01 13:12:11 +00:00
}
},
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "e2e/protractor.conf.js",
"devServerTarget": "frontend:serve"
},
"configurations": {
"production": {
"devServerTarget": "frontend:serve:production"
}
}
}
}
}
},
2020-06-01 13:12:11 +00:00
"defaultProject": "frontend"
2020-07-10 20:49:11 +00:00
}