tsconfig.json 573 B

123456789101112131415161718192021222324
  1. {
  2. "compilerOptions": {
  3. "lib": ["ESNext"],
  4. "module": "esnext",
  5. "target": "esnext",
  6. "moduleResolution": "bundler",
  7. "moduleDetection": "force",
  8. "allowImportingTsExtensions": true,
  9. "noEmit": true,
  10. "composite": true,
  11. "strict": true,
  12. "downlevelIteration": true,
  13. "skipLibCheck": true,
  14. "jsx": "react-jsx",
  15. "jsxImportSource": "htmx-tsx",
  16. "allowSyntheticDefaultImports": true,
  17. "forceConsistentCasingInFileNames": true,
  18. "allowJs": true,
  19. "types": [
  20. "htmx-tsx",
  21. "bun-types" // add Bun global
  22. ]
  23. }
  24. }