2026-02-13 11:18:48 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "Bundler",
|
|
|
|
|
"lib": ["ES2022", "DOM"],
|
|
|
|
|
"rootDir": ".",
|
|
|
|
|
"outDir": "dist",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"types": ["vitest/globals", "node"],
|
|
|
|
|
"verbatimModuleSyntax": true,
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
"jsxImportSource": "preact"
|
|
|
|
|
},
|
2026-03-16 17:54:39 +00:00
|
|
|
"include": ["src", "test", "tsup.config.ts", "vitest.config.ts", "types"],
|
2026-02-13 11:18:48 +00:00
|
|
|
"exclude": ["dist", "node_modules"]
|
|
|
|
|
}
|