tsconfig.json 359 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "ESNext",
  5. "moduleResolution": "Bundler",
  6. "strict": true,
  7. "skipLibCheck": true,
  8. "lib": [
  9. "DOM",
  10. "DOM.Iterable",
  11. "ESNext"
  12. ],
  13. "types": [
  14. "./worker-configuration",
  15. "vite/client"
  16. ],
  17. "jsx": "react-jsx",
  18. "jsxImportSource": "react"
  19. },
  20. }