Files
openproject/frontend/tsconfig.spec.json
T
Alexander Brandon Coles 4b3a36a0f5 [#66563] Configure Vitest
Wire the frontend test target to Vitest and add shared setup for Angular
specs under esbuild.

https://community.openproject.org/wp/66563
2026-05-08 09:52:17 +02:00

18 lines
269 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/spec",
"types": [
"vitest/globals"
]
},
"files": [
"src/test-setup.ts",
"src/polyfills.ts"
],
"include": [
"src/**/*.spec.ts",
"src/**/*.d.ts"
]
}