tsconfig.json 403 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. // General
  4. "jsx": "preserve",
  5. "jsxImportSource": "solid-js",
  6. "target": "ESNext",
  7. // Modules
  8. "allowSyntheticDefaultImports": true,
  9. "esModuleInterop": true,
  10. "isolatedModules": true,
  11. "module": "ESNext",
  12. "moduleResolution": "bundler",
  13. "noEmit": true,
  14. // Type Checking & Safety
  15. "strict": true,
  16. "types": ["vite/client"]
  17. }
  18. }