tsconfig.json 320 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. "noUnusedLocals": true
  11. }
  12. }