tsconfig.json 343 B

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