2023-04-18 10:27:19 +00:00
|
|
|
{
|
|
|
|
|
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
|
|
|
"version": 1,
|
|
|
|
|
"newProjectRoot": "projects",
|
|
|
|
|
"projects": {
|
2023-04-19 08:36:49 +00:00
|
|
|
"ngmodule": {
|
2023-04-18 10:27:19 +00:00
|
|
|
"projectType": "application",
|
|
|
|
|
"schematics": {},
|
2023-04-19 08:36:49 +00:00
|
|
|
"root": "projects/ngmodule",
|
|
|
|
|
"sourceRoot": "projects/ngmodule/src",
|
2023-04-18 10:27:19 +00:00
|
|
|
"prefix": "app",
|
|
|
|
|
"architect": {
|
|
|
|
|
"build": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"builder": "@angular/build:application",
|
2023-04-18 10:27:19 +00:00
|
|
|
"options": {
|
2023-11-27 09:41:02 +00:00
|
|
|
"namedChunks": true,
|
|
|
|
|
"outputPath": "dist/ngmodule",
|
2023-04-19 08:36:49 +00:00
|
|
|
"index": "projects/ngmodule/src/index.html",
|
2023-11-27 09:41:02 +00:00
|
|
|
"browser": "projects/ngmodule/src/main.ts",
|
|
|
|
|
"server": "projects/ngmodule/src/main.server.ts",
|
|
|
|
|
"ssr": {
|
|
|
|
|
"entry": "projects/ngmodule/server.ts"
|
|
|
|
|
},
|
2023-04-19 08:36:49 +00:00
|
|
|
"progress": false,
|
|
|
|
|
"polyfills": [
|
|
|
|
|
"zone.js"
|
|
|
|
|
],
|
|
|
|
|
"tsConfig": "projects/ngmodule/tsconfig.app.json",
|
|
|
|
|
"assets": [
|
|
|
|
|
"projects/ngmodule/src/favicon.ico",
|
|
|
|
|
"projects/ngmodule/src/assets"
|
|
|
|
|
],
|
|
|
|
|
"styles": [
|
|
|
|
|
"projects/ngmodule/src/styles.css"
|
|
|
|
|
],
|
|
|
|
|
"scripts": []
|
2023-04-18 10:27:19 +00:00
|
|
|
},
|
|
|
|
|
"configurations": {
|
|
|
|
|
"production": {
|
|
|
|
|
"budgets": [
|
|
|
|
|
{
|
|
|
|
|
"type": "initial",
|
|
|
|
|
"maximumWarning": "500kb",
|
|
|
|
|
"maximumError": "1mb"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"type": "anyComponentStyle",
|
|
|
|
|
"maximumWarning": "2kb",
|
|
|
|
|
"maximumError": "4kb"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"outputHashing": "all"
|
|
|
|
|
},
|
|
|
|
|
"development": {
|
|
|
|
|
"optimization": false,
|
|
|
|
|
"extractLicenses": false,
|
2023-11-27 09:41:02 +00:00
|
|
|
"sourceMap": true
|
2023-04-18 10:27:19 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"defaultConfiguration": "production"
|
|
|
|
|
},
|
|
|
|
|
"serve": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"builder": "@angular/build:dev-server",
|
2023-04-18 10:27:19 +00:00
|
|
|
"configurations": {
|
|
|
|
|
"production": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"buildTarget": "ngmodule:build:production"
|
2023-04-18 10:27:19 +00:00
|
|
|
},
|
|
|
|
|
"development": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"buildTarget": "ngmodule:build:development"
|
2023-04-18 10:27:19 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"defaultConfiguration": "development"
|
|
|
|
|
},
|
2023-04-19 08:36:49 +00:00
|
|
|
"e2e": {
|
|
|
|
|
"builder": "@angular-devkit/build-angular:protractor",
|
|
|
|
|
"options": {
|
|
|
|
|
"port": 0,
|
|
|
|
|
"protractorConfig": "e2e/protractor.conf.js",
|
|
|
|
|
"webdriverUpdate": false,
|
|
|
|
|
"baseUrl": "http://localhost:4206"
|
|
|
|
|
}
|
|
|
|
|
},
|
2023-04-18 10:27:19 +00:00
|
|
|
"test": {
|
|
|
|
|
"builder": "@angular-devkit/build-angular:karma",
|
|
|
|
|
"options": {
|
2023-04-19 08:36:49 +00:00
|
|
|
"progress": false,
|
|
|
|
|
"polyfills": [
|
|
|
|
|
"zone.js",
|
|
|
|
|
"zone.js/testing"
|
|
|
|
|
],
|
|
|
|
|
"tsConfig": "projects/ngmodule/tsconfig.spec.json",
|
|
|
|
|
"assets": [
|
|
|
|
|
"projects/ngmodule/src/favicon.ico",
|
|
|
|
|
"projects/ngmodule/src/assets"
|
|
|
|
|
],
|
|
|
|
|
"styles": [
|
|
|
|
|
"projects/ngmodule/src/styles.css"
|
|
|
|
|
],
|
|
|
|
|
"scripts": []
|
2023-04-18 10:27:19 +00:00
|
|
|
}
|
2023-04-19 08:36:49 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"standalone": {
|
|
|
|
|
"projectType": "application",
|
|
|
|
|
"schematics": {},
|
|
|
|
|
"root": "projects/standalone",
|
|
|
|
|
"sourceRoot": "projects/standalone/src",
|
|
|
|
|
"prefix": "app",
|
|
|
|
|
"architect": {
|
|
|
|
|
"build": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"builder": "@angular/build:application",
|
2023-04-19 08:36:49 +00:00
|
|
|
"options": {
|
2023-11-27 09:41:02 +00:00
|
|
|
"namedChunks": true,
|
|
|
|
|
"outputPath": "dist/standalone",
|
2023-04-19 08:36:49 +00:00
|
|
|
"index": "projects/standalone/src/index.html",
|
2023-11-27 09:41:02 +00:00
|
|
|
"browser": "projects/standalone/src/main.ts",
|
|
|
|
|
"server": "projects/standalone/src/main.server.ts",
|
2024-09-10 21:04:09 +00:00
|
|
|
"polyfills": ["zone.js"],
|
2023-11-27 09:41:02 +00:00
|
|
|
"ssr": {
|
|
|
|
|
"entry": "projects/standalone/server.ts"
|
|
|
|
|
},
|
2023-04-19 08:36:49 +00:00
|
|
|
"tsConfig": "projects/standalone/tsconfig.app.json",
|
|
|
|
|
"assets": [
|
|
|
|
|
"projects/standalone/src/favicon.ico",
|
|
|
|
|
"projects/standalone/src/assets"
|
|
|
|
|
],
|
|
|
|
|
"styles": [
|
|
|
|
|
"projects/standalone/src/styles.css"
|
|
|
|
|
],
|
|
|
|
|
"progress": false,
|
|
|
|
|
"scripts": []
|
|
|
|
|
},
|
|
|
|
|
"configurations": {
|
|
|
|
|
"production": {
|
|
|
|
|
"budgets": [
|
|
|
|
|
{
|
|
|
|
|
"type": "initial",
|
|
|
|
|
"maximumWarning": "500kb",
|
|
|
|
|
"maximumError": "1mb"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"type": "anyComponentStyle",
|
|
|
|
|
"maximumWarning": "2kb",
|
|
|
|
|
"maximumError": "4kb"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"outputHashing": "all"
|
|
|
|
|
},
|
|
|
|
|
"development": {
|
|
|
|
|
"optimization": false,
|
|
|
|
|
"extractLicenses": false,
|
2023-11-27 09:41:02 +00:00
|
|
|
"sourceMap": true
|
2023-04-19 08:36:49 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"defaultConfiguration": "production"
|
|
|
|
|
},
|
|
|
|
|
"serve": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"builder": "@angular/build:dev-server",
|
2023-04-19 08:36:49 +00:00
|
|
|
"configurations": {
|
|
|
|
|
"production": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"buildTarget": "standalone:build:production"
|
2023-04-19 08:36:49 +00:00
|
|
|
},
|
|
|
|
|
"development": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"buildTarget": "standalone:build:development"
|
2023-04-19 08:36:49 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"defaultConfiguration": "development"
|
|
|
|
|
},
|
2023-04-18 10:27:19 +00:00
|
|
|
"e2e": {
|
|
|
|
|
"builder": "@angular-devkit/build-angular:protractor",
|
|
|
|
|
"options": {
|
2023-04-19 08:36:49 +00:00
|
|
|
"port": 0,
|
2023-04-18 10:27:19 +00:00
|
|
|
"protractorConfig": "e2e/protractor.conf.js",
|
|
|
|
|
"webdriverUpdate": false,
|
|
|
|
|
"baseUrl": "http://localhost:4206"
|
|
|
|
|
}
|
|
|
|
|
},
|
2023-04-19 08:36:49 +00:00
|
|
|
"extract-i18n": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"builder": "@angular/build:extract-i18n",
|
2023-04-19 08:36:49 +00:00
|
|
|
"options": {
|
2024-09-10 21:04:09 +00:00
|
|
|
"buildTarget": "standalone:build"
|
2023-04-19 08:36:49 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"test": {
|
|
|
|
|
"builder": "@angular-devkit/build-angular:karma",
|
|
|
|
|
"options": {
|
|
|
|
|
"progress": false,
|
|
|
|
|
"polyfills": [
|
|
|
|
|
"zone.js",
|
|
|
|
|
"zone.js/testing"
|
|
|
|
|
],
|
|
|
|
|
"tsConfig": "projects/standalone/tsconfig.spec.json",
|
|
|
|
|
"assets": [
|
|
|
|
|
"projects/standalone/src/favicon.ico",
|
|
|
|
|
"projects/standalone/src/assets"
|
|
|
|
|
],
|
|
|
|
|
"styles": [
|
|
|
|
|
"projects/standalone/src/styles.css"
|
|
|
|
|
],
|
|
|
|
|
"scripts": []
|
|
|
|
|
}
|
2023-04-18 10:27:19 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-04-19 08:36:49 +00:00
|
|
|
},
|
|
|
|
|
"cli": {
|
2024-09-18 08:14:10 +00:00
|
|
|
"analytics": false,
|
|
|
|
|
"cache": {
|
|
|
|
|
"enabled": false
|
|
|
|
|
}
|
2023-04-18 10:27:19 +00:00
|
|
|
}
|
|
|
|
|
}
|