mirror of
https://github.com/opf/openproject.git
synced 2026-06-13 19:20:00 +00:00
4b3a36a0f5
Wire the frontend test target to Vitest and add shared setup for Angular specs under esbuild. https://community.openproject.org/wp/66563
18 lines
269 B
JSON
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"
|
|
]
|
|
}
|