tsconfig.json 520 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "ESNext",
  5. "moduleResolution": "bundler",
  6. "allowJs": true,
  7. "checkJs": false,
  8. "jsx": "react-jsx",
  9. "allowSyntheticDefaultImports": true,
  10. "esModuleInterop": true,
  11. "resolveJsonModule": true,
  12. "skipLibCheck": true,
  13. "strict": false,
  14. "baseUrl": ".",
  15. "paths": {
  16. "src/*": [
  17. "./src/*"
  18. ]
  19. },
  20. "types": [
  21. "bun"
  22. ]
  23. },
  24. "include": [
  25. "src/**/*",
  26. "vendor/**/*",
  27. "shims/**/*"
  28. ]
  29. }