mirror of
https://github.com/opf/openproject.git
synced 2026-06-13 19:20:00 +00:00
0067b2d533
TypeScript 6.0 requires an explicit `rootDir` when linked-plugin symlinks push the common source directory outside the project (TS5011), and type declarations even for side-effect imports such as `moment/locale/*` (TS2882). Angular 22 also rejects `extendedDiagnostics` while `strictTemplates` is off (NG4003).
26 lines
490 B
JSON
26 lines
490 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./out-tsc/spec",
|
|
"types": [
|
|
"vitest/globals",
|
|
"@testing-library/jest-dom/vitest"
|
|
]
|
|
},
|
|
"files": [
|
|
"src/test-browser-polyfills.ts",
|
|
"src/test-setup.ts",
|
|
"src/test-providers.ts",
|
|
"src/polyfills.ts"
|
|
],
|
|
"include": [
|
|
"src/**/*.spec.ts",
|
|
"src/**/*.d.ts",
|
|
"src/main.ts",
|
|
"src/app/**/*.module.ts"
|
|
],
|
|
"angularCompilerOptions": {
|
|
"strictTemplates": false
|
|
}
|
|
}
|