Files
vripper-project/vripper-web-ui/angular.json
T

118 lines
3.1 KiB
JSON
Raw Normal View History

2019-06-21 19:44:39 +01:00
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
2023-05-13 17:16:00 +01:00
"vripper-web-ui": {
2019-06-21 19:44:39 +01:00
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
2019-06-21 19:44:39 +01:00
}
},
2023-05-13 17:16:00 +01:00
"root": "",
"sourceRoot": "src",
"prefix": "app",
2019-06-21 19:44:39 +01:00
"architect": {
"build": {
2024-12-14 18:01:02 +01:00
"builder": "@angular-devkit/build-angular:application",
2019-06-21 19:44:39 +01:00
"options": {
2024-12-14 18:01:02 +01:00
"outputPath": {
"base": "dist/vripper-web-ui"
},
2019-06-21 19:44:39 +01:00
"index": "src/index.html",
2022-07-23 16:42:52 +01:00
"polyfills": [
"zone.js"
],
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
2019-06-21 19:44:39 +01:00
"assets": [
"src/favicon.ico",
2023-05-13 17:16:00 +01:00
"src/assets"
2019-06-21 19:44:39 +01:00
],
"styles": [
2020-05-03 14:22:40 +01:00
"src/styles.scss"
2021-02-16 19:13:02 +01:00
],
2024-12-14 18:01:02 +01:00
"scripts": [],
"browser": "src/main.ts"
2019-06-21 19:44:39 +01:00
},
"configurations": {
"production": {
"budgets": [
2020-03-29 17:03:14 +01:00
{
"type": "anyComponentStyle",
2023-05-13 17:16:00 +01:00
"maximumWarning": "2kb",
"maximumError": "4kb"
2019-06-21 19:44:39 +01:00
}
2023-05-13 17:16:00 +01:00
],
"outputHashing": "all"
2022-07-23 16:42:52 +01:00
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
2019-06-21 19:44:39 +01:00
}
2022-07-23 16:42:52 +01:00
},
"defaultConfiguration": "production"
2019-06-21 19:44:39 +01:00
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
2023-12-08 13:36:54 +00:00
"buildTarget": "vripper-web-ui:build:production"
2022-07-23 16:42:52 +01:00
},
"development": {
2023-12-08 13:36:54 +00:00
"buildTarget": "vripper-web-ui:build:development"
2019-06-21 19:44:39 +01:00
}
2022-07-23 16:42:52 +01:00
},
2023-05-13 17:16:00 +01:00
"options": {
"proxyConfig": "src/proxy.conf.json"
},
2022-07-23 16:42:52 +01:00
"defaultConfiguration": "development"
2019-06-21 19:44:39 +01:00
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
2023-12-08 13:36:54 +00:00
"buildTarget": "vripper-web-ui:build"
2019-06-21 19:44:39 +01:00
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
2022-07-23 16:42:52 +01:00
"polyfills": [
"zone.js",
"zone.js/testing"
],
"tsConfig": "tsconfig.spec.json",
"inlineStyleLanguage": "scss",
2019-06-21 19:44:39 +01:00
"assets": [
"src/favicon.ico",
2023-05-13 17:16:00 +01:00
"src/assets"
],
"styles": [
"src/styles.scss"
2019-06-21 19:44:39 +01:00
],
2022-07-23 16:42:52 +01:00
"scripts": []
2019-06-21 19:44:39 +01:00
}
2023-05-13 17:16:00 +01:00
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"src/**/*.ts",
"src/**/*.html"
]
}
2019-06-21 19:44:39 +01:00
}
}
}
2023-05-13 17:16:00 +01:00
},
"cli": {
"schematicCollections": [
"@angular-eslint/schematics"
],
"analytics": false
2022-07-23 16:42:52 +01:00
}
2020-05-03 14:22:40 +01:00
}