dashboard/angular.json
Evgenia Grigorieva 5ed4c426d6
Update to angular 10 (#376)
- updated to angular 10
- bumped required dependencies
- exchanged unit tests from deprecated async to waitForAsync api
- removed dependencies:
  - saturn-datepicker
  - is-url-superb
- changed RangeDatepickerComponent implementation using material range
- deprecated RangeDatepickerComponent
- changed lodash imports to prevent commonjs modules problems
- removed table module
- fixed swagger codegen to support angular 10
2021-02-04 17:57:52 +03:00

190 lines
8.0 KiB
JSON

{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"dashboard": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "ngx-build-plus:browser",
"options": {
"allowedCommonJsDependencies": [
"uuid",
"keycloak-js",
"css-element-queries",
"humanize-duration",
"angular2-text-mask"
],
"outputPath": "dist",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"aot": true,
"assets": ["src/favicon.ico", "src/assets", "src/appConfig.json", "src/authConfig.json"],
"styles": [
"src/styles/core.scss",
{
"input": "src/styles/themes/light.scss",
"bundleName": "themes/light",
"lazy": true
},
{
"input": "src/styles/themes/dark.scss",
"bundleName": "themes/dark",
"lazy": true
}
],
"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"
}
]
},
"stub-keycloak": {
"fileReplacements": [
{
"replace": "src/app/auth/keycloak/index.ts",
"with": "src/app/auth/keycloak/index.stub.ts"
}
]
}
}
},
"serve": {
"builder": "ngx-build-plus:dev-server",
"options": {
"browserTarget": "dashboard:build"
},
"configurations": {
"production": {
"browserTarget": "dashboard:build:production"
},
"stub-keycloak": {
"browserTarget": "dashboard:build:stub-keycloak"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "dashboard:build"
}
},
"test": {
"builder": "ngx-build-plus:karma",
"options": {
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js",
"assets": ["src/favicon.ico", "src/assets", "src/appConfig.json", "src/authConfig.json"],
"styles": [
"src/styles/core.scss",
{
"input": "src/styles/themes/light.scss",
"bundleName": "themes/light",
"lazy": true
},
{
"input": "src/styles/themes/dark.scss",
"bundleName": "themes/dark",
"lazy": true
}
],
"scripts": [],
"codeCoverageExclude": ["src/**/swagger-codegen/**/*", "src/**/openapi-codegen/**"]
}
},
"test-ci": {
"builder": "ngx-build-plus:karma",
"options": {
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma-ci.conf.js",
"assets": ["src/favicon.ico", "src/assets", "src/appConfig.json", "src/authConfig.json"],
"styles": [
"src/styles/core.scss",
{
"input": "src/styles/themes/light.scss",
"bundleName": "themes/light",
"lazy": true
},
{
"input": "src/styles/themes/dark.scss",
"bundleName": "themes/dark",
"lazy": true
}
],
"scripts": [],
"codeCoverageExclude": ["src/**/swagger-codegen/**/*", "src/**/openapi-codegen/**"]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": ["tsconfig.app.json", "tsconfig.spec.json", "e2e/tsconfig.json"],
"exclude": [
"**/node_modules/**",
"**/*.json",
"src/**/swagger-codegen/**",
"src/**/openapi-codegen/**"
]
}
},
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "e2e/protractor.conf.js",
"devServerTarget": "dashboard:serve"
},
"configurations": {
"production": {
"devServerTarget": "dashboard:serve:production"
}
}
}
}
}
},
"defaultProject": "dashboard",
"cli": {
"analytics": false
}
}