codev / tsconfig.json
chenbhao's picture
init: verspercode v0.1.0
064bfd6
Raw
History Blame
530 Bytes
{
"compilerOptions": {
"lib": ["ESNext"],
"target": "ESNext",
"module": "Preserve",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
"types": ["bun"],
"baseUrl": ".",
"paths": {
"src/*": ["src/*"]
},
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"strict": false,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src", "scripts", "env.d.ts"]
}