Seed: Angular workspace (web/) for frontend tasks

ng new defaults, Angular 22.1, vitest unit-test builder — npm test runs
once and green under CI.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Honegger, Florian
2026-08-05 01:02:32 +02:00
parent 3f086f9dca
commit 605a952f7a
23 changed files with 8572 additions and 0 deletions

14
web/tsconfig.spec.json Normal file
View File

@@ -0,0 +1,14 @@
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
{
"extends": "./tsconfig.json",
"compilerOptions": {
"types": [
"vitest/globals"
]
},
"include": [
"src/**/*.d.ts",
"src/**/*.spec.ts"
]
}