Files
ts-template/tsconfig.json
sripwoud b09ac3303b refactor: move to bun as js runtime (#35)
Bun is now used as sript and test runner. (No need for pnpm or jest)
2023-11-06 11:18:50 +01:00

44 lines
1.0 KiB
JSON

{
"include": ["src", "test"],
"exclude": ["test/coverage"],
"compilerOptions": {
"noEmit": true,
"baseUrl": ".",
"lib": ["ESNext"],
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"allowJs": true,
"checkJs": true,
"exactOptionalPropertyTypes": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"jsx": "react-jsx",
"moduleDetection": "force",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"useUnknownInCatchVariables": true,
"strict": true,
"paths": {
"@mod": ["src/mod"],
"@mod/*": ["src/mod/*"]
},
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"types": ["bun-types"]
}
}