scripts/ordre-du-jour/odj2/angular.json

105 lines
2.8 KiB
JSON
Raw Normal View History

2023-12-04 11:01:56 +01:00
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
2024-05-22 11:34:21 +02:00
"odj2": {
2023-12-04 11:01:56 +01:00
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
2024-05-22 11:34:21 +02:00
"builder": "@angular-devkit/build-angular:browser",
2023-12-04 11:01:56 +01:00
"options": {
2024-05-22 11:34:21 +02:00
"outputPath": "dist/odj2",
2023-12-04 11:01:56 +01:00
"index": "src/index.html",
2024-05-22 11:34:21 +02:00
"main": "src/main.ts",
2023-12-04 11:01:56 +01:00
"polyfills": [
"zone.js"
],
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.scss"
],
2024-05-22 11:34:21 +02:00
"scripts": []
2023-12-04 11:01:56 +01:00
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
2024-05-23 22:24:01 +02:00
"maximumError": "20kb"
2023-12-04 11:01:56 +01:00
}
],
"outputHashing": "all"
},
"development": {
2024-05-22 11:34:21 +02:00
"buildOptimizer": false,
2023-12-04 11:01:56 +01:00
"optimization": false,
2024-05-22 11:34:21 +02:00
"vendorChunk": true,
2023-12-04 11:01:56 +01:00
"extractLicenses": false,
2024-05-22 11:34:21 +02:00
"sourceMap": true,
"namedChunks": true
2023-12-04 11:01:56 +01:00
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
2024-05-22 11:34:21 +02:00
"browserTarget": "odj2:build:production"
2023-12-04 11:01:56 +01:00
},
"development": {
2024-05-22 11:34:21 +02:00
"browserTarget": "odj2:build:development"
2023-12-04 11:01:56 +01:00
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
2024-05-22 11:34:21 +02:00
"browserTarget": "odj2:build"
2023-12-04 11:01:56 +01:00
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"polyfills": [
"zone.js",
"zone.js/testing"
],
"tsConfig": "tsconfig.spec.json",
"inlineStyleLanguage": "scss",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.scss"
],
"scripts": []
}
}
}
}
}
}