zgo/angular.json

110 lines
3.0 KiB
JSON
Raw Normal View History

2021-10-01 20:10:14 +00:00
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
2021-10-15 19:14:49 +00:00
"cli": {
"analytics": false
},
2021-10-01 20:10:14 +00:00
"version": 1,
"newProjectRoot": "projects",
"projects": {
2021-10-28 20:34:48 +00:00
"zgo": {
2021-10-01 20:10:14 +00:00
"projectType": "application",
"schematics": {
"@schematics/angular:application": {
"strict": true
}
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
2021-10-28 20:34:48 +00:00
"outputPath": "dist/zgo",
2021-10-01 20:10:14 +00:00
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
2021-10-26 17:58:39 +00:00
"src/styles.scss"
2021-10-01 20:10:14 +00:00
],
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
2022-12-15 15:26:37 +00:00
"maximumWarning": "5mb",
"maximumError": "10mb"
2021-10-01 20:10:14 +00:00
},
{
"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-01-31 20:35:45 +00:00
"buildTarget": "zgo:build:production"
2021-10-01 20:10:14 +00:00
},
"development": {
2024-01-31 20:35:45 +00:00
"buildTarget": "zgo:build:development"
2021-10-01 20:10:14 +00:00
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
2024-01-31 20:35:45 +00:00
"buildTarget": "zgo:build"
2021-10-01 20:10:14 +00:00
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
2021-10-15 19:14:49 +00:00
"./node_modules/@angular/material/prebuilt-themes/indigo-pink.css",
2021-10-01 20:10:14 +00:00
"src/styles.css"
],
"scripts": []
}
}
}
}
2022-07-13 12:20:47 +00:00
}
2021-10-01 20:10:14 +00:00
}