codestilo-ts
v0.0.2
Published
A base TSConfig for working with your typescript project.
Downloads
6
Readme
A base TSConfig for working with Bun.
Add the package to your "devDependencies"
:
npm install --save-dev codestilo-ts
Add to your tsconfig.json
:
"extends": "codestilo-ts/bun.json"
The tsconfig.json
:
{
"compilerOptions": {
"lib": ["ESNext"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noPropertyAccessFromIndexSignature": true
}
}