mirror of
https://github.com/sripwoud/ts-template.git
synced 2026-01-10 14:07:58 -05:00
44 lines
1.0 KiB
JSON
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"]
|
|
}
|
|
}
|