tsconfig.json 450 B

1234567891011121314151617181920212223
  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. "experimentalDecorators": true,
  19. "emitDecoratorMetadata": true
  20. },
  21. "include": ["src"],
  22. "exclude": ["node_modules"]
  23. }