2023-11-06 16:42:56 +00:00
|
|
|
{
|
2023-12-11 19:17:28 +00:00
|
|
|
"$schema": "../node_modules/@angular/cli/lib/config/schema.json",
|
2023-11-06 16:42:56 +00:00
|
|
|
"version": 1,
|
2023-12-07 20:57:21 +00:00
|
|
|
"newProjectRoot": ".",
|
2023-11-06 16:42:56 +00:00
|
|
|
"projects": {
|
|
|
|
|
"angular-dev": {
|
|
|
|
|
"projectType": "application",
|
|
|
|
|
"schematics": {
|
|
|
|
|
"@schematics/angular:component": {
|
2026-03-25 11:19:57 +00:00
|
|
|
"style": "scss"
|
2023-11-06 16:42:56 +00:00
|
|
|
}
|
|
|
|
|
},
|
2023-12-11 19:17:28 +00:00
|
|
|
"root": ".",
|
|
|
|
|
"sourceRoot": "src",
|
2023-12-07 20:57:21 +00:00
|
|
|
"prefix": "adev",
|
2023-11-06 16:42:56 +00:00
|
|
|
"architect": {
|
|
|
|
|
"build": {
|
2024-05-03 16:58:51 +00:00
|
|
|
"builder": "@angular/build:application",
|
2023-11-06 16:42:56 +00:00
|
|
|
"options": {
|
2025-11-07 19:32:15 +00:00
|
|
|
"externalDependencies": ["path", "xhr2"],
|
2024-10-23 09:01:56 +00:00
|
|
|
"outputMode": "static",
|
2025-07-02 18:48:15 +00:00
|
|
|
"outputPath": "dist",
|
2023-12-11 19:17:28 +00:00
|
|
|
"index": "src/index.html",
|
|
|
|
|
"browser": "src/main.ts",
|
|
|
|
|
"server": "src/main.server.ts",
|
2024-04-13 14:06:30 +00:00
|
|
|
"polyfills": [],
|
2023-12-11 19:17:28 +00:00
|
|
|
"tsConfig": "tsconfig.app.json",
|
2023-11-06 16:42:56 +00:00
|
|
|
"inlineStyleLanguage": "scss",
|
2025-05-15 00:06:33 +00:00
|
|
|
"assets": [
|
|
|
|
|
"src/favicon.ico",
|
|
|
|
|
"src/robots.txt",
|
2025-10-27 08:26:23 +00:00
|
|
|
"src/llms.txt",
|
2025-11-17 23:19:50 +00:00
|
|
|
"src/assets",
|
|
|
|
|
"src/assets/images/v21-event"
|
2025-07-02 18:48:15 +00:00
|
|
|
],
|
2025-06-11 00:45:44 +00:00
|
|
|
"styles": ["@angular/docs/styles/global-styles.scss", "./src/local-styles.scss"],
|
2023-11-06 16:42:56 +00:00
|
|
|
"scripts": [],
|
2023-12-11 19:17:28 +00:00
|
|
|
"webWorkerTsConfig": "tsconfig.worker.json",
|
2023-12-07 20:57:21 +00:00
|
|
|
"optimization": {
|
|
|
|
|
"fonts": {
|
2024-02-22 17:54:01 +00:00
|
|
|
"inline": false
|
2023-12-07 20:57:21 +00:00
|
|
|
}
|
|
|
|
|
}
|
2023-11-06 16:42:56 +00:00
|
|
|
},
|
|
|
|
|
"configurations": {
|
|
|
|
|
"production": {
|
|
|
|
|
"outputHashing": "all"
|
|
|
|
|
},
|
|
|
|
|
"development": {
|
|
|
|
|
"optimization": false,
|
|
|
|
|
"extractLicenses": false,
|
2023-12-07 20:57:21 +00:00
|
|
|
"sourceMap": true
|
2023-11-06 16:42:56 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"defaultConfiguration": "production"
|
|
|
|
|
},
|
|
|
|
|
"serve": {
|
2025-10-28 12:02:56 +00:00
|
|
|
"builder": "@angular/build:dev-server",
|
2023-11-06 16:42:56 +00:00
|
|
|
"configurations": {
|
|
|
|
|
"production": {
|
|
|
|
|
"buildTarget": "angular-dev:build:production"
|
|
|
|
|
},
|
|
|
|
|
"development": {
|
|
|
|
|
"buildTarget": "angular-dev:build:development"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"defaultConfiguration": "development",
|
|
|
|
|
"options": {
|
|
|
|
|
"buildTarget": "web-ui:build",
|
|
|
|
|
"headers": {
|
|
|
|
|
"Cross-Origin-Opener-Policy": "same-origin",
|
|
|
|
|
"Cross-Origin-Embedder-Policy": "require-corp"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"test": {
|
2025-10-28 12:02:56 +00:00
|
|
|
"builder": "@angular/build:unit-test",
|
2026-03-25 11:19:57 +00:00
|
|
|
"options": {
|
2025-10-28 12:02:56 +00:00
|
|
|
"runner": "karma",
|
|
|
|
|
"browsers": ["ChromeHeadlessNoSandbox"],
|
2026-03-25 11:19:57 +00:00
|
|
|
"include": ["src/app/**/*.spec.ts"]
|
2023-11-06 16:42:56 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"cli": {
|
2024-04-10 14:01:18 +00:00
|
|
|
"analytics": "dca119a9-da31-47f7-a6cb-b60541037021",
|
|
|
|
|
"cache": {
|
|
|
|
|
"enabled": false
|
|
|
|
|
}
|
2023-11-06 16:42:56 +00:00
|
|
|
}
|
|
|
|
|
}
|