dashboard/angular.json

194 lines
8.1 KiB
JSON
Raw Normal View History

2018-11-27 09:06:26 +00:00
{
2018-11-30 13:26:03 +00:00
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"dashboard": {
2020-03-30 13:40:22 +00:00
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
2021-08-02 15:06:09 +00:00
},
"@schematics/angular:application": {
"strict": true
2020-03-30 13:40:22 +00:00
}
},
2018-11-30 13:26:03 +00:00
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-builders/custom-webpack:browser",
2018-11-30 13:26:03 +00:00
"options": {
"customWebpackConfig": {
"path": "./extra-webpack.config.ts"
},
"allowedCommonJsDependencies": [
"uuid",
"keycloak-js",
"css-element-queries",
"humanize-duration",
"apexcharts",
2022-07-26 17:59:01 +00:00
"short-uuid",
"moment",
"flat",
"base64-js",
"js-sha256",
"utility-types"
],
2018-11-30 13:26:03 +00:00
"outputPath": "dist",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": ["zone.js"],
2020-03-30 13:40:22 +00:00
"tsConfig": "tsconfig.app.json",
2021-08-02 15:06:09 +00:00
"inlineStyleLanguage": "scss",
"assets": [
"src/favicon.ico",
"src/assets",
"src/appConfig.json",
"src/authConfig.json",
"src/appConfig.stage.json",
"src/authConfig.stage.json"
],
2019-05-13 12:02:44 +00:00
"styles": [
2019-06-20 15:40:23 +00:00
"src/styles/core.scss",
2019-05-13 12:02:44 +00:00
{
2021-03-05 10:29:56 +00:00
"input": "src/styles/themes/main.scss",
2021-08-02 15:06:09 +00:00
"bundleName": "main-theme",
"inject": false
2019-05-13 12:02:44 +00:00
},
{
"input": "src/styles/themes/persian-green.scss",
2021-08-02 15:06:09 +00:00
"bundleName": "persian-green-theme",
"inject": false
2021-10-06 05:16:56 +00:00
},
{
"input": "src/styles/themes/solitude.scss",
"bundleName": "solitude-theme",
"inject": false
2022-01-14 08:17:10 +00:00
},
{
"input": "src/styles/themes/eastern.scss",
"bundleName": "eastern-theme",
"inject": false
2019-05-13 12:02:44 +00:00
}
],
2018-11-30 13:26:03 +00:00
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
2020-03-30 13:40:22 +00:00
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
2018-11-30 13:26:03 +00:00
}
2021-08-02 15:06:09 +00:00
],
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
2021-08-25 14:52:01 +00:00
"outputHashing": "all",
"sourceMap": true
},
2021-08-02 15:06:09 +00:00
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
},
"stage": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.stage.ts"
}
]
2018-11-30 13:26:03 +00:00
}
2021-08-02 15:06:09 +00:00
},
"defaultConfiguration": "production"
2018-11-30 13:26:03 +00:00
},
"serve": {
"builder": "@angular-builders/custom-webpack:dev-server",
2018-11-30 13:26:03 +00:00
"configurations": {
"production": {
"buildTarget": "dashboard:build:production"
},
2021-08-02 15:06:09 +00:00
"development": {
"buildTarget": "dashboard:build:development"
2021-08-02 15:06:09 +00:00
},
"stage": {
"buildTarget": "dashboard:build:development,stage"
2018-11-30 13:26:03 +00:00
}
2021-08-02 15:06:09 +00:00
},
"defaultConfiguration": "development"
2018-11-30 13:26:03 +00:00
},
"test": {
"builder": "@angular-builders/custom-webpack:karma",
2018-11-30 13:26:03 +00:00
"options": {
"main": "src/test.ts",
"polyfills": ["zone.js"],
2020-03-30 13:40:22 +00:00
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js",
2021-08-02 15:06:09 +00:00
"inlineStyleLanguage": "scss",
"assets": [
"src/favicon.ico",
"src/assets",
"src/appConfig.json",
"src/authConfig.json",
"src/appConfig.stage.json",
"src/authConfig.stage.json"
],
"styles": [
"src/styles/core.scss",
{
2021-03-05 10:29:56 +00:00
"input": "src/styles/themes/main.scss",
2021-08-02 15:06:09 +00:00
"bundleName": "main-theme",
"inject": false
},
{
"input": "src/styles/themes/persian-green.scss",
2021-08-02 15:06:09 +00:00
"bundleName": "persian-green-theme",
"inject": false
2021-10-06 05:16:56 +00:00
},
{
"input": "src/styles/themes/solitude.scss",
"bundleName": "solitude-theme",
"inject": false
2022-01-14 08:17:10 +00:00
},
{
"input": "src/styles/themes/eastern.scss",
"bundleName": "eastern-theme",
"inject": false
2019-05-13 12:02:44 +00:00
}
2022-04-19 08:11:55 +00:00
]
2021-08-02 15:06:09 +00:00
},
"configurations": {
"ci": {
"karmaConfig": "karma-ci.conf.js"
}
2018-11-30 13:26:03 +00:00
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": ["src/**/*.ts", "src/**/*.html"]
}
2018-11-30 13:26:03 +00:00
}
2018-11-27 09:06:26 +00:00
}
}
},
2019-06-26 13:12:03 +00:00
"cli": {
"analytics": false
}
2018-11-30 13:26:03 +00:00
}