mirror of
https://github.com/valitydev/dashboard.git
synced 2024-11-06 10:35:21 +00:00
158 lines
6.5 KiB
JSON
158 lines
6.5 KiB
JSON
{
|
|
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
"version": 1,
|
|
"newProjectRoot": "projects",
|
|
"projects": {
|
|
"dashboard": {
|
|
"root": "",
|
|
"sourceRoot": "src",
|
|
"projectType": "application",
|
|
"prefix": "app",
|
|
"schematics": {},
|
|
"architect": {
|
|
"build": {
|
|
"builder": "ngx-build-plus:browser",
|
|
"options": {
|
|
"outputPath": "dist",
|
|
"index": "src/index.html",
|
|
"main": "src/main.ts",
|
|
"polyfills": "src/polyfills.ts",
|
|
"tsConfig": "src/tsconfig.app.json",
|
|
"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,
|
|
"aot": true,
|
|
"extractLicenses": true,
|
|
"vendorChunk": false,
|
|
"buildOptimizer": true,
|
|
"budgets": [
|
|
{
|
|
"type": "initial",
|
|
"maximumWarning": "2mb",
|
|
"maximumError": "5mb"
|
|
}
|
|
]
|
|
},
|
|
"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": "src/tsconfig.spec.json",
|
|
"karmaConfig": "src/karma.conf.js",
|
|
"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": [],
|
|
"assets": ["src/favicon.ico", "src/assets", "src/appConfig.json", "src/authConfig.json"],
|
|
"codeCoverageExclude": ["src/**/swagger-codegen/**/*"]
|
|
}
|
|
},
|
|
"lint": {
|
|
"builder": "@angular-devkit/build-angular:tslint",
|
|
"options": {
|
|
"tsConfig": ["src/tsconfig.app.json", "src/tsconfig.spec.json"],
|
|
"exclude": ["**/node_modules/**", "**/*.json", "src/**/swagger-codegen/**"]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"dashboard-e2e": {
|
|
"root": "e2e/",
|
|
"projectType": "application",
|
|
"prefix": "",
|
|
"architect": {
|
|
"e2e": {
|
|
"builder": "@angular-devkit/build-angular:protractor",
|
|
"options": {
|
|
"protractorConfig": "e2e/protractor.conf.js",
|
|
"devServerTarget": "dashboard:serve"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"devServerTarget": "dashboard:serve:production"
|
|
}
|
|
}
|
|
},
|
|
"lint": {
|
|
"builder": "@angular-devkit/build-angular:tslint",
|
|
"options": {
|
|
"tsConfig": "e2e/tsconfig.e2e.json",
|
|
"exclude": ["**/node_modules/**", "**/*.json", "src/**/swagger-codegen/**"]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"defaultProject": "dashboard",
|
|
"cli": {
|
|
"analytics": false
|
|
}
|
|
}
|