2025-03-04 20:16:50 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
// Target and Module Settings
|
|
|
|
|
"target": "es2020",
|
|
|
|
|
"module": "NodeNext",
|
|
|
|
|
"moduleResolution": "NodeNext",
|
|
|
|
|
|
|
|
|
|
// Output Settings
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
|
|
|
|
|
// Type Checking Options
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
|
"useUnknownInCatchVariables": true,
|
|
|
|
|
|
|
|
|
|
// Interop Options
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
|
|
|
|
|
// Other Options
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"verbatimModuleSyntax": true
|
|
|
|
|
},
|
|
|
|
|
"include": ["src/**/*", "*.d.ts"],
|
2025-03-05 19:55:03 +02:00
|
|
|
"exclude": ["node_modules", "dist"],
|
2025-03-04 20:16:50 +02:00
|
|
|
"typeRoots": ["./node_modules/@types", "./"]
|
|
|
|
|
}
|