You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1019 B

5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
  1. {
  2. "compilerOptions": {
  3. "composite": true,
  4. "target": "esnext",
  5. "jsx": "preserve",
  6. "jsxFactory": "h",
  7. "jsxFragmentFactory": "Fragment",
  8. "lib": ["esnext", "dom"],
  9. "useDefineForClassFields": true,
  10. "baseUrl": ".",
  11. "module": "esnext",
  12. "moduleResolution": "node",
  13. "paths": {
  14. "@/*": ["src/*"],
  15. "apis/*": ["src/apis/*"],
  16. "assets/*": ["src/assets/*"],
  17. "components/*": ["src/components/*"],
  18. "hooks/*": ["src/hooks/*"],
  19. "languages/*": ["src/languages/*"],
  20. "libs/*": ["src/libs/*"],
  21. "store/*": ["src/store/*"],
  22. "views/*": ["src/views/*"]
  23. },
  24. "resolveJsonModule": true,
  25. "strict": true,
  26. "strictPropertyInitialization": false,
  27. "noImplicitThis": false,
  28. "sourceMap": true,
  29. "esModuleInterop": true,
  30. "skipLibCheck": true
  31. },
  32. "types": ["vite/client", "jest", "node", "element-plus/global.d.ts", "lodash"],
  33. "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
  34. "exclude": [
  35. ]
  36. }