tsconfig.json 412 B

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