2021-09-16 20:51:20 +03:00
|
|
|
// Base compiler options for all tsconfig files.
|
|
|
|
|
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"composite": true,
|
2022-06-08 22:36:17 +03:00
|
|
|
|
|
|
|
// Set up incremental builds. All sub-projects emit under outDir, maintaining
|
|
|
|
// directory structure relative to rootDir. No effect on include, exclude, etc.
|
2021-09-16 20:51:20 +03:00
|
|
|
"emitDeclarationOnly": true,
|
|
|
|
"declarationMap": true,
|
2022-06-08 22:36:17 +03:00
|
|
|
"outDir": ".tmp/tsbuildinfo/",
|
|
|
|
"rootDir": ".",
|
2021-09-16 20:51:20 +03:00
|
|
|
|
2023-05-31 20:36:48 +03:00
|
|
|
"target": "es2022",
|
2022-06-10 20:23:08 +03:00
|
|
|
"module": "es2022",
|
2021-09-16 20:51:20 +03:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
|
|
|
"allowJs": true,
|
|
|
|
"checkJs": true,
|
|
|
|
"strict": true,
|
|
|
|
// TODO: remove the next line to be fully `strict`.
|
|
|
|
"useUnknownInCatchVariables": false,
|
|
|
|
|
|
|
|
// "listFiles": true,
|
|
|
|
// "noErrorTruncation": true,
|
2021-10-04 21:26:24 +03:00
|
|
|
// "extendedDiagnostics": true,
|
2021-09-16 20:51:20 +03:00
|
|
|
},
|
|
|
|
}
|