0.0.2 • Published 1 year ago

codestilo-ts v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

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
  }
}
0.0.2

1 year ago

0.0.1

1 year ago