legio-30/angular.json

86 lines
2.3 KiB
JSON
Raw Permalink Normal View History

2022-09-14 22:07:17 -04:00
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"LegioXXX": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
},
"root": "",
"sourceRoot": "src",
"prefix": "xxx",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
2022-09-20 13:33:29 -04:00
"outputPath": "dist",
2022-09-14 22:07:17 -04:00
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
2023-12-04 22:42:56 -05:00
"tsConfig": "tsconfig.json",
2022-09-14 22:07:17 -04:00
"inlineStyleLanguage": "scss",
"assets": [
"src/assets"
],
"styles": [
"src/styles.scss"
],
2022-09-20 13:59:59 -04:00
"scripts": [ ]
2022-09-14 22:07:17 -04:00
},
"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": {
"browserTarget": "LegioXXX:build:production"
},
"development": {
"browserTarget": "LegioXXX:build:development"
}
},
"defaultConfiguration": "development"
}
}
}
},
"cli": {
"analytics": false
}
}