2025-09-29 13:27:13 -07:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
2025-09-29 19:40:08 -07:00
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "bundler",
|
2025-09-29 13:27:13 -07:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"lib": ["ES2022"],
|
2025-09-29 19:40:08 -07:00
|
|
|
"types": ["node", "jest"],
|
2025-09-29 13:27:13 -07:00
|
|
|
"sourceMap": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
2025-09-29 19:40:08 -07:00
|
|
|
"noImplicitAny": true,
|
2025-09-30 18:06:16 -07:00
|
|
|
"outDir": "dist",
|
|
|
|
|
"stripInternal": true
|
2025-09-29 13:27:13 -07:00
|
|
|
},
|
2025-10-01 12:39:04 -07:00
|
|
|
"include": ["src", "tests", "tsup.config.ts", "samples"],
|
2025-09-29 13:27:13 -07:00
|
|
|
"exclude": ["dist", "node_modules"]
|
|
|
|
|
}
|