21 lines
640 B
JSON
21 lines
640 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable", "WebWorker"],
|
||
|
|
"strict": true,
|
||
|
|
"noUncheckedIndexedAccess": true,
|
||
|
|
"noImplicitOverride": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"verbatimModuleSyntax": false,
|
||
|
|
"types": ["bun"]
|
||
|
|
},
|
||
|
|
"include": ["server/**/*.ts", "shared/**/*.ts", "tests/**/*.ts"],
|
||
|
|
"exclude": ["node_modules", "frontend/dist", "data"]
|
||
|
|
}
|