tsconfig.json 311 B

123456789101112
  1. {
  2. "$schema": "https://json.schemastore.org/tsconfig",
  3. "extends": "@tsconfig/node22/tsconfig.json",
  4. "compilerOptions": {
  5. "module": "ESNext",
  6. "moduleResolution": "bundler",
  7. "strict": true,
  8. "noEmit": true,
  9. "types": ["bun", "node"]
  10. },
  11. "include": ["src", "../core/src/resource.d.ts"]
  12. }