2025-04-16 12:56:08 -04:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"outDir": "dist",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"target": "esnext",
|
|
|
|
|
"lib": [
|
|
|
|
|
"DOM",
|
|
|
|
|
"DOM.Iterable",
|
|
|
|
|
"ES2022" // Node.js 18
|
|
|
|
|
],
|
|
|
|
|
"types": ["node"],
|
|
|
|
|
"baseUrl": "./",
|
2025-04-19 08:00:45 +08:00
|
|
|
"resolveJsonModule": true, // ESM doesn't yet support JSON modules.
|
2025-04-16 12:56:08 -04:00
|
|
|
"jsx": "react",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"newLine": "lf",
|
|
|
|
|
"stripInternal": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
|
|
|
"noUncheckedSideEffectImports": true,
|
|
|
|
|
"noEmitOnError": true,
|
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"skipLibCheck": true
|
|
|
|
|
},
|
2025-04-18 18:13:34 -07:00
|
|
|
"include": ["src", "tests", "bin"]
|
2025-04-16 12:56:08 -04:00
|
|
|
}
|