2026-02-13 22:34:49 +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"],
|
2026-02-13 22:53:13 +00:00
|
|
|
"verbatimModuleSyntax": true
|
2026-02-13 22:34:49 +00:00
|
|
|
},
|
|
|
|
|
"include": ["src", "test", "types", "tsup.config.ts", "vitest.config.ts"],
|
|
|
|
|
"exclude": ["dist", "node_modules"]
|
|
|
|
|
}
|