40 lines
830 B
JSON
40 lines
830 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"lib": [
|
|
"es2020",
|
|
"dom",
|
|
"dom.iterable",
|
|
"WebWorker"
|
|
],
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"bun",
|
|
"node",
|
|
"deno/ns",
|
|
"vite/client"
|
|
],
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitOverride": true,
|
|
"declaration": true,
|
|
"inlineSources": true,
|
|
"noEmit": true,
|
|
"sourceMap": true,
|
|
"stripInternal": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"isolatedDeclarations": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": [
|
|
"**/node_modules",
|
|
"**/private",
|
|
"**/__snapshots__"
|
|
]
|
|
}
|