li-dance-backoffice/frontend/angular.json

93 lines
2.6 KiB
JSON
Raw Normal View History

2022-11-30 15:26:46 +01:00
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"li-dance-backoffice": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
},
"@schematics/angular:application": {
"strict": true
}
},
"root": "",
"sourceRoot": "src",
"prefix": "li",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/li-dance-backoffice",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.scss"
],
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
}
],
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
2024-03-10 18:13:36 +01:00
"buildTarget": "li-dance-backoffice:build:production"
2022-11-30 15:26:46 +01:00
},
"development": {
2024-03-10 18:13:36 +01:00
"buildTarget": "li-dance-backoffice:build:development"
2022-11-30 15:26:46 +01:00
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
2024-03-10 18:13:36 +01:00
"buildTarget": "li-dance-backoffice:build"
2022-11-30 15:26:46 +01:00
}
}
}
}
2024-03-10 17:57:05 +01:00
}
2022-11-30 15:26:46 +01:00
}