2025-11-02 18:04:58 +00:00
|
|
|
{
|
|
|
|
|
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
|
|
|
"version": 1,
|
|
|
|
|
"newProjectRoot": "projects",
|
|
|
|
|
"projects": {
|
2026-01-15 22:46:50 +00:00
|
|
|
"frontend": {
|
2025-11-02 18:04:58 +00:00
|
|
|
"projectType": "application",
|
2026-01-15 22:46:50 +00:00
|
|
|
"schematics": {
|
|
|
|
|
"@schematics/angular:component": {
|
|
|
|
|
"style": "scss"
|
|
|
|
|
}
|
|
|
|
|
},
|
2025-11-02 18:04:58 +00:00
|
|
|
"root": "",
|
|
|
|
|
"sourceRoot": "src",
|
|
|
|
|
"prefix": "app",
|
|
|
|
|
"architect": {
|
|
|
|
|
"build": {
|
|
|
|
|
"builder": "@angular/build:application",
|
|
|
|
|
"options": {
|
|
|
|
|
"browser": "src/main.ts",
|
|
|
|
|
"tsConfig": "tsconfig.app.json",
|
2026-01-15 22:46:50 +00:00
|
|
|
"polyfills": ["src/polyfills.ts"],
|
|
|
|
|
"inlineStyleLanguage": "scss",
|
2025-11-02 18:04:58 +00:00
|
|
|
"assets": [
|
|
|
|
|
{
|
|
|
|
|
"glob": "**/*",
|
|
|
|
|
"input": "public"
|
|
|
|
|
},
|
|
|
|
|
{
|
2026-01-15 22:46:50 +00:00
|
|
|
"glob": "fa-{brands,jelly,thin,light,regular,solid}*.woff2",
|
|
|
|
|
"input": "node_modules/@fortawesome/fontawesome-free/webfonts",
|
|
|
|
|
"output": "webfonts"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"glob": "**/*.*",
|
|
|
|
|
"input": "node_modules/@awesome.me/webawesome/dist",
|
|
|
|
|
"output": "@awesome.me/webawesome"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"glob": "**/*.*",
|
|
|
|
|
"input": "bindings",
|
2025-11-02 18:04:58 +00:00
|
|
|
"output": "/"
|
|
|
|
|
},
|
2026-01-15 22:46:50 +00:00
|
|
|
{ "glob": "**/*", "input": "node_modules/monaco-editor", "output": "/assets/monaco/" },
|
|
|
|
|
{ "glob": "**/*", "input": "../services/docs/static", "output": "docs" },
|
|
|
|
|
{
|
|
|
|
|
"glob": "**/*.json",
|
|
|
|
|
"input": "../services/core/i18n/locales",
|
|
|
|
|
"output": "assets/i18n"
|
|
|
|
|
}
|
2025-11-02 18:04:58 +00:00
|
|
|
],
|
2026-01-15 22:46:50 +00:00
|
|
|
"scripts": [
|
|
|
|
|
"node_modules/@tailwindplus/elements/dist/index.js"
|
2025-11-02 18:04:58 +00:00
|
|
|
],
|
2026-01-15 22:46:50 +00:00
|
|
|
"styles": [
|
|
|
|
|
"src/styles.scss"
|
|
|
|
|
]
|
2025-11-02 18:04:58 +00:00
|
|
|
},
|
|
|
|
|
"configurations": {
|
|
|
|
|
"production": {
|
2026-01-15 22:46:50 +00:00
|
|
|
"fileReplacements": [
|
|
|
|
|
{
|
|
|
|
|
"replace": "src/environments/environment.ts",
|
|
|
|
|
"with": "src/environments/environment.prod.ts"
|
|
|
|
|
}
|
|
|
|
|
],
|
2025-11-02 18:04:58 +00:00
|
|
|
"budgets": [
|
|
|
|
|
{
|
|
|
|
|
"type": "initial",
|
2026-01-15 22:46:50 +00:00
|
|
|
"maximumWarning": "500kB",
|
2025-11-02 18:04:58 +00:00
|
|
|
"maximumError": "1MB"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"type": "anyComponentStyle",
|
|
|
|
|
"maximumWarning": "4kB",
|
|
|
|
|
"maximumError": "8kB"
|
|
|
|
|
}
|
|
|
|
|
],
|
2026-01-15 22:46:50 +00:00
|
|
|
"outputHashing": "all"
|
2025-11-02 18:04:58 +00:00
|
|
|
},
|
|
|
|
|
"development": {
|
|
|
|
|
"optimization": false,
|
|
|
|
|
"extractLicenses": false,
|
2026-01-15 22:46:50 +00:00
|
|
|
"sourceMap": true
|
2025-11-02 18:04:58 +00:00
|
|
|
}
|
|
|
|
|
},
|
2026-01-15 22:46:50 +00:00
|
|
|
"defaultConfiguration": "production"
|
2025-11-02 18:04:58 +00:00
|
|
|
},
|
|
|
|
|
"serve": {
|
|
|
|
|
"builder": "@angular/build:dev-server",
|
|
|
|
|
"configurations": {
|
|
|
|
|
"production": {
|
2026-01-15 22:46:50 +00:00
|
|
|
"buildTarget": "frontend:build:production"
|
2025-11-02 18:04:58 +00:00
|
|
|
},
|
|
|
|
|
"development": {
|
2026-01-15 22:46:50 +00:00
|
|
|
"buildTarget": "frontend:build:development"
|
2025-11-02 18:04:58 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"defaultConfiguration": "development"
|
|
|
|
|
},
|
|
|
|
|
"extract-i18n": {
|
|
|
|
|
"builder": "@angular/build:extract-i18n"
|
|
|
|
|
},
|
|
|
|
|
"test": {
|
|
|
|
|
"builder": "@angular/build:karma",
|
|
|
|
|
"options": {
|
|
|
|
|
"tsConfig": "tsconfig.spec.json",
|
2026-01-15 22:46:50 +00:00
|
|
|
"inlineStyleLanguage": "scss",
|
2025-11-02 18:04:58 +00:00
|
|
|
"assets": [
|
|
|
|
|
{
|
|
|
|
|
"glob": "**/*",
|
|
|
|
|
"input": "public"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"styles": [
|
2026-01-15 22:46:50 +00:00
|
|
|
"src/styles.scss"
|
2025-11-02 18:04:58 +00:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"cli": {
|
|
|
|
|
"analytics": false
|
|
|
|
|
}
|
|
|
|
|
}
|