2024-02-25 17:04:23 +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": {
|
|
|
|
"style": "scss",
|
|
|
|
"skipTests": true,
|
|
|
|
"standalone": false
|
|
|
|
},
|
|
|
|
"@schematics/angular:class": {
|
|
|
|
"skipTests": true
|
|
|
|
},
|
|
|
|
"@schematics/angular:directive": {
|
|
|
|
"skipTests": true,
|
|
|
|
"standalone": false
|
|
|
|
},
|
|
|
|
"@schematics/angular:guard": {
|
|
|
|
"skipTests": true
|
|
|
|
},
|
|
|
|
"@schematics/angular:interceptor": {
|
|
|
|
"skipTests": true
|
|
|
|
},
|
|
|
|
"@schematics/angular:pipe": {
|
|
|
|
"skipTests": true,
|
|
|
|
"standalone": false
|
|
|
|
},
|
|
|
|
"@schematics/angular:resolver": {
|
|
|
|
"skipTests": true
|
|
|
|
},
|
|
|
|
"@schematics/angular:service": {
|
|
|
|
"skipTests": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"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",
|
|
|
|
"inlineStyleLanguage": "scss",
|
|
|
|
"assets": [
|
|
|
|
"src/favicon.ico",
|
|
|
|
"src/assets"
|
|
|
|
],
|
|
|
|
"styles": [
|
2024-02-29 23:04:30 +01:00
|
|
|
"@angular/material/prebuilt-themes/indigo-pink.css",
|
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",
|
2024-03-01 20:06:39 +01:00
|
|
|
"node_modules/bootstrap/dist/css/bootstrap.css",
|
2024-02-25 17:04:23 +01:00
|
|
|
"src/styles.scss"
|
|
|
|
],
|
|
|
|
"scripts": []
|
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"production": {
|
|
|
|
"budgets": [
|
|
|
|
{
|
|
|
|
"type": "initial",
|
|
|
|
"maximumWarning": "4mb",
|
|
|
|
"maximumError": "7mb"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"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",
|
|
|
|
"inlineStyleLanguage": "scss",
|
|
|
|
"assets": [
|
|
|
|
"src/favicon.ico",
|
|
|
|
"src/assets"
|
|
|
|
],
|
|
|
|
"styles": [
|
2024-02-29 23:04:30 +01:00
|
|
|
"@angular/material/prebuilt-themes/indigo-pink.css",
|
2024-02-25 17:04:23 +01:00
|
|
|
"src/styles.scss"
|
|
|
|
],
|
|
|
|
"scripts": []
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|