2022-07-25 22:51:31 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-06-09 19:59:42 +02:00
|
|
|
/* Type Checking */
|
2024-06-09 20:00:42 +02:00
|
|
|
"exactOptionalPropertyTypes": true,
|
2024-06-09 19:59:42 +02:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
"noImplicitReturns": true,
|
2024-06-09 20:00:42 +02:00
|
|
|
"noUncheckedIndexedAccess": true,
|
2024-06-09 19:59:42 +02:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"strict": true,
|
2022-07-25 22:51:31 +02:00
|
|
|
|
|
|
|
/* Modules */
|
|
|
|
"moduleResolution": "node",
|
2024-06-09 19:59:42 +02:00
|
|
|
"rootDir": "src",
|
2022-07-25 22:51:31 +02:00
|
|
|
|
|
|
|
/* Emit */
|
|
|
|
"declaration": true,
|
|
|
|
"outDir": "lib",
|
2024-06-09 19:59:42 +02:00
|
|
|
"sourceMap": true,
|
|
|
|
|
|
|
|
/* JavaScript Support */
|
|
|
|
"allowJs": true,
|
2022-07-25 22:51:31 +02:00
|
|
|
|
|
|
|
/* Interop Constraints */
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2024-06-09 19:59:42 +02:00
|
|
|
"isolatedModules": true,
|
2022-07-25 22:51:31 +02:00
|
|
|
|
2024-06-09 19:59:42 +02:00
|
|
|
/* Language and Environment */
|
|
|
|
"target": "esnext",
|
2024-06-09 20:08:44 +02:00
|
|
|
|
|
|
|
/* Projects */
|
|
|
|
"composite": true,
|
2022-07-25 22:51:31 +02:00
|
|
|
},
|
2023-02-22 23:03:47 +01:00
|
|
|
"include": ["src"],
|
2022-07-25 22:51:31 +02:00
|
|
|
}
|