tsconfig.json 464 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "ESNext",
  5. "moduleResolution": "bundler",
  6. "skipLibCheck": true,
  7. "allowSyntheticDefaultImports": true,
  8. "esModuleInterop": true,
  9. "jsx": "preserve",
  10. "jsxImportSource": "solid-js",
  11. "allowJs": true,
  12. "noEmit": true,
  13. "strict": true,
  14. "types": ["@cloudflare/workers-types", "vite/client"],
  15. "isolatedModules": true,
  16. "paths": {
  17. "~/*": ["./src/*"]
  18. }
  19. }
  20. }