tsconfig.json 520 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "ESNext",
  5. "moduleResolution": "bundler",
  6. "jsx": "react-jsx",
  7. "strict": false,
  8. "skipLibCheck": true,
  9. "noEmit": true,
  10. "esModuleInterop": true,
  11. "allowSyntheticDefaultImports": true,
  12. "resolveJsonModule": true,
  13. "types": ["bun"],
  14. "paths": {
  15. "src/*": ["./src/*"]
  16. }
  17. },
  18. "include": ["src/**/*.ts", "src/**/*.tsx"],
  19. "exclude": ["node_modules"]
  20. }