mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +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).
32 lines
604 B
JSON
32 lines
604 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./out-tsc/app",
|
|
"rootDir": "..",
|
|
"jsx": "react-jsx",
|
|
"types": []
|
|
},
|
|
"files": [
|
|
"src/main.ts",
|
|
"src/polyfills.ts",
|
|
"src/app/core/setup/init-globals.ts",
|
|
"src/app/core/setup/init-vendors.ts",
|
|
"src/stimulus/setup.ts",
|
|
"src/turbo/setup.ts"
|
|
],
|
|
"include": [
|
|
"src/stimulus/controllers/**/*.ts",
|
|
"src/**/*.d.ts"
|
|
],
|
|
"exclude": [
|
|
"src/stimulus/controllers/**/*.spec.ts"
|
|
],
|
|
"angularCompilerOptions": {
|
|
"strictTemplates": false
|
|
},
|
|
"types": [
|
|
"node",
|
|
"react"
|
|
]
|
|
}
|