2026-03-02 12:14:09 -08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"lib": ["ES2020"],
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"rootDir": "./src",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"moduleResolution": "node",
|
2026-06-02 06:08:28 -07:00
|
|
|
"declaration": false,
|
|
|
|
|
"declarationMap": false,
|
2026-03-02 12:14:09 -08:00
|
|
|
"sourceMap": true,
|
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
|
"noImplicitReturns": false,
|
|
|
|
|
"noFallthroughCasesInSwitch": true
|
|
|
|
|
},
|
|
|
|
|
"include": ["src/**/*"],
|
|
|
|
|
"exclude": ["node_modules", "dist", "**/*.test.ts"]
|
|
|
|
|
}
|