2026-06-21 20:32:27 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2026-06-22 00:06:01 +00:00
|
|
|
"target": "ES2020",
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"lib": ["ES2020"],
|
2026-06-21 20:32:27 +00:00
|
|
|
"outDir": "./dist",
|
|
|
|
|
"rootDir": "./src",
|
|
|
|
|
"strict": true,
|
2026-06-22 00:06:01 +00:00
|
|
|
"noImplicitAny": true,
|
2026-06-21 20:32:27 +00:00
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"resolveJsonModule": true,
|
2026-06-22 00:06:01 +00:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true
|
2026-06-21 20:32:27 +00:00
|
|
|
},
|
|
|
|
|
"include": ["src/**/*"],
|
|
|
|
|
"exclude": ["node_modules", "dist"]
|
|
|
|
|
}
|