ShoppingApp/Weifer.ShoppingApp.Frontend/angular.json

131 lines
3.7 KiB
JSON
Raw Permalink Normal View History

2024-02-25 13:43:19 +01:00
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"Weifer.ShoppingApp.Frontend": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
2024-02-25 17:04:23 +01:00
"style": "scss",
"skipTests": true,
2024-02-25 13:43:19 +01:00
"standalone": false
},
2024-02-25 17:04:23 +01:00
"@schematics/angular:class": {
"skipTests": true
},
2024-02-25 13:43:19 +01:00
"@schematics/angular:directive": {
2024-02-25 17:04:23 +01:00
"skipTests": true,
2024-02-25 13:43:19 +01:00
"standalone": false
},
2024-02-25 17:04:23 +01:00
"@schematics/angular:guard": {
"skipTests": true
},
"@schematics/angular:interceptor": {
"skipTests": true
},
2024-02-25 13:43:19 +01:00
"@schematics/angular:pipe": {
2024-02-25 17:04:23 +01:00
"skipTests": true,
2024-02-25 13:43:19 +01:00
"standalone": false
2024-02-25 17:04:23 +01:00
},
"@schematics/angular:resolver": {
"skipTests": true
},
"@schematics/angular:service": {
"skipTests": true
2024-02-25 13:43:19 +01:00
}
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/weifer.shopping-app.frontend",
"index": "src/index.html",
"browser": "src/main.ts",
"polyfills": [
"zone.js"
],
"tsConfig": "tsconfig.app.json",
2024-02-25 17:04:23 +01:00
"inlineStyleLanguage": "scss",
2024-02-25 13:43:19 +01:00
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
2024-02-25 17:04:23 +01:00
"node_modules/devextreme/dist/css/dx.common.css",
"src/themes/generated/theme.base.css",
"src/themes/generated/theme.additional.css",
"src/dx-styles.scss",
"src/styles.scss"
2024-02-25 13:43:19 +01:00
],
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
2024-02-25 17:04:23 +01:00
"maximumWarning": "4mb",
"maximumError": "7mb"
2024-02-25 13:43:19 +01:00
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
}
],
"outputHashing": "all"
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"buildTarget": "Weifer.ShoppingApp.Frontend:build:production"
},
"development": {
"buildTarget": "Weifer.ShoppingApp.Frontend:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"buildTarget": "Weifer.ShoppingApp.Frontend:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"polyfills": [
"zone.js",
"zone.js/testing"
],
"tsConfig": "tsconfig.spec.json",
2024-02-25 17:04:23 +01:00
"inlineStyleLanguage": "scss",
2024-02-25 13:43:19 +01:00
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
2024-02-25 17:04:23 +01:00
"src/styles.scss"
2024-02-25 13:43:19 +01:00
],
2024-02-25 17:04:23 +01:00
"scripts": []
2024-02-25 13:43:19 +01:00
}
}
}
}
}
}