tsconfig.json 327 B

12345678910111213141516171819
  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. "vite/client"
  15. ],
  16. "jsx": "react-jsx",
  17. "jsxImportSource": "react"
  18. },
  19. }