definma-ui/angular.json

139 lines
4.0 KiB
JSON
Raw Normal View History

2020-01-14 13:41:28 +01:00
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
2020-08-12 17:38:12 +02:00
"definma": {
2020-01-14 13:41:28 +01:00
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
2020-08-12 17:38:12 +02:00
"outputPath": "dist/definma",
2020-01-14 13:41:28 +01:00
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
2020-05-22 09:36:50 +02:00
"aot": true,
2020-01-14 13:41:28 +01:00
"assets": [
"src/favicon.ico",
2020-01-14 16:18:26 +01:00
"src/assets",
2020-08-12 11:06:46 +02:00
{
"glob": "**/*",
"input": "./node_modules/@inst-iot/bosch-angular-ui-components/assets",
"output": "./assets"
2020-08-12 17:38:12 +02:00
},
"src/manifest.webmanifest"
2020-01-14 13:41:28 +01:00
],
"styles": [
"src/styles.scss"
],
"scripts": []
},
"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"
}
2020-08-12 17:38:12 +02:00
],
"serviceWorker": true,
"ngswConfigPath": "ngsw-config.json"
2020-01-14 13:41:28 +01:00
}
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
2020-08-12 17:38:12 +02:00
"browserTarget": "definma:build",
2020-05-20 10:07:34 +02:00
"proxyConfig": "src/proxy.conf.json"
2020-01-14 13:41:28 +01:00
},
"configurations": {
"production": {
2020-08-12 17:38:12 +02:00
"browserTarget": "definma:build:production"
2020-01-14 13:41:28 +01:00
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
2020-08-12 17:38:12 +02:00
"browserTarget": "definma:build"
2020-01-14 13:41:28 +01:00
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js",
"assets": [
"src/favicon.ico",
2020-08-12 17:38:12 +02:00
"src/assets",
"src/manifest.webmanifest"
2020-01-14 13:41:28 +01:00
],
"styles": [
"src/styles.scss"
],
"scripts": []
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"tsconfig.app.json",
"tsconfig.spec.json",
"e2e/tsconfig.json"
],
"exclude": [
"**/node_modules/**"
]
}
},
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "e2e/protractor.conf.js",
2020-08-12 17:38:12 +02:00
"devServerTarget": "definma:serve"
2020-01-14 13:41:28 +01:00
},
"configurations": {
"production": {
2020-08-12 17:38:12 +02:00
"devServerTarget": "definma:serve:production"
2020-01-14 13:41:28 +01:00
}
}
}
}
}},
2020-08-12 17:38:12 +02:00
"defaultProject": "definma"
2020-01-14 16:18:26 +01:00
}