tsconfig.json 871 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "compilerOptions": {
  3. "ignoreDeprecations": "5.0",
  4. "suppressImplicitAnyIndexErrors": true,
  5. "target": "esnext",
  6. "useDefineForClassFields": true,
  7. "module": "esnext",
  8. "moduleResolution": "node",
  9. "strict": true,
  10. "noLib": false,
  11. "sourceMap": true,
  12. "resolveJsonModule": true,
  13. "esModuleInterop": true,
  14. "lib": ["esnext", "dom"],
  15. "baseUrl": ".",
  16. "allowJs": true,
  17. "skipLibCheck": true,
  18. "allowSyntheticDefaultImports": true,
  19. "forceConsistentCasingInFileNames": true,
  20. "jsx": "preserve",
  21. "jsxFactory": "h",
  22. "jsxFragmentFactory": "Fragment",
  23. "paths": {
  24. "@/*": ["src/*"]
  25. },
  26. "types": ["vite/client", "unplugin-icons/types/vue", "element-plus/global"],
  27. },
  28. "include": ["mock/**/*.ts", "src/**/*.ts", "src/**/*.vue", "vite.config.ts"],
  29. "exclude": ["node_modules", "dist", "**/*.js"]
  30. }