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.

21 lines
596 B

1 week ago
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "moduleResolution": "node",
  6. "strict": true,
  7. "jsx": "preserve",
  8. "sourceMap": true,
  9. "resolveJsonModule": true,
  10. "esModuleInterop": true,
  11. "lib": ["esnext", "dom"],
  12. "types": ["vite/client", "node", "element-plus/global"],
  13. "skipLibCheck": true, // element-plus
  14. "baseUrl": ".",
  15. "paths": {
  16. "@/*": ["src/*"]
  17. }
  18. },
  19. "include": ["src/**/*", "src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
  20. "exclude": ["node_modules", "dist", "**/*.js"]
  21. }