tsconfig.json 338 B

123456789101112
  1. {
  2. "$schema": "https://json.schemastore.org/tsconfig",
  3. "extends": "@tsconfig/bun/tsconfig.json",
  4. "compilerOptions": {
  5. "lib": ["ESNext", "DOM", "DOM.Iterable"],
  6. "module": "NodeNext",
  7. "moduleResolution": "NodeNext",
  8. "allowImportingTsExtensions": false,
  9. "allowJs": false,
  10. "noUncheckedIndexedAccess": false
  11. }
  12. }