tsconfig.json 677 B

12345678910111213141516171819202122232425262728
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "useDefineForClassFields": true,
  5. "module": "esnext",
  6. "moduleResolution": "node",
  7. "strict": true,
  8. "jsx": "preserve",
  9. "sourceMap": true,
  10. "resolveJsonModule": true,
  11. "isolatedModules": true,
  12. "esModuleInterop": true,
  13. "lib": ["esnext", "dom"],
  14. "skipLibCheck": true,
  15. "types": ["vitest/globals"]
  16. },
  17. "extends": "./tsconfig.paths.json",
  18. "include": [
  19. "src",
  20. "__tests__",
  21. "vite.config.ts",
  22. "cypress.config.ts",
  23. "commitlint.config.js",
  24. ".eslintrc.js"
  25. ],
  26. "references": [{ "path": "./tsconfig.node.json" }],
  27. "exclude": ["node_modules", "cypress.config.ts"]
  28. }