nise/nise-frontend/angular.json

109 lines
3.0 KiB
JSON
Raw Permalink Normal View History

2024-02-14 16:43:11 +00:00
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"nise-frontend": {
"projectType": "application",
"schematics": {},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
2024-06-08 12:32:35 +00:00
"builder": "@angular-devkit/build-angular:application",
2024-02-14 16:43:11 +00:00
"options": {
2024-06-08 12:32:35 +00:00
"outputPath": {
"base": "dist/nise-frontend"
},
2024-02-14 16:43:11 +00:00
"index": "src/index.html",
"polyfills": [
"zone.js"
],
"tsConfig": "tsconfig.app.json",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/assets/style.css"
],
2024-03-05 00:31:55 +00:00
"scripts": [
"src/assets/oneko.js"
2024-06-08 12:32:35 +00:00
],
"browser": "src/main.ts"
2024-02-14 16:43:11 +00:00
},
"configurations": {
"production": {
2024-02-25 14:43:13 +00:00
"statsJson": false,
2024-02-14 16:43:11 +00:00
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "2mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
}
],
"outputHashing": "all"
},
"development": {
2024-02-25 14:43:13 +00:00
"statsJson": true,
2024-02-14 16:43:11 +00:00
"optimization": false,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true,
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.development.ts"
}
]
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"buildTarget": "nise-frontend:build:production"
},
"development": {
"buildTarget": "nise-frontend:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"buildTarget": "nise-frontend:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"polyfills": [
"zone.js",
"zone.js/testing"
],
"tsConfig": "tsconfig.spec.json",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.css"
],
"scripts": []
}
}
}
}
}
}