2023-07-04 09:13:14 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
2025-11-29 09:48:31 +00:00
|
|
|
"module": "NodeNext",
|
|
|
|
|
"moduleResolution": "NodeNext",
|
2023-07-04 09:13:14 +02:00
|
|
|
"esModuleInterop": true,
|
2025-11-29 18:32:00 +00:00
|
|
|
"verbatimModuleSyntax": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
|
"noImplicitThis": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"skipLibCheck": false,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
|
|
|
|
"sourceMap": true
|
2025-11-29 09:48:31 +00:00
|
|
|
},
|
2025-11-29 18:32:00 +00:00
|
|
|
"include": [
|
|
|
|
|
"ts/**/*"
|
|
|
|
|
],
|
2025-11-29 09:48:31 +00:00
|
|
|
"exclude": [
|
2025-11-29 18:32:00 +00:00
|
|
|
"node_modules",
|
|
|
|
|
"dist",
|
|
|
|
|
"dist_ts",
|
2025-11-29 09:48:31 +00:00
|
|
|
"dist_*/**/*.d.ts"
|
|
|
|
|
]
|
2023-07-04 09:13:14 +02:00
|
|
|
}
|