tsconfig.json 309 B

123456789101112
  1. {
  2. "$schema": "https://json.schemastore.org/tsconfig.json",
  3. "extends": "@tsconfig/bun/tsconfig.json",
  4. "compilerOptions": {
  5. "rootDir": "src",
  6. "outDir": "dist",
  7. "declaration": true,
  8. "lib": ["ESNext", "DOM", "DOM.Iterable"],
  9. "noUncheckedIndexedAccess": false
  10. },
  11. "include": ["src"]
  12. }