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.

39 lines
982 B

  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "moduleResolution": "node",
  6. "strict": false,
  7. "jsx": "preserve",
  8. "importHelpers": true,
  9. "experimentalDecorators": true,
  10. "strictFunctionTypes": false,
  11. "skipLibCheck": true,
  12. "esModuleInterop": true,
  13. "isolatedModules": true,
  14. "allowSyntheticDefaultImports": true,
  15. "forceConsistentCasingInFileNames": true,
  16. "sourceMap": true,
  17. "baseUrl": ".",
  18. "allowJs": false,
  19. "resolveJsonModule": true,
  20. "lib": ["dom", "esnext"],
  21. "incremental": true,
  22. "paths": {
  23. "/@/*": ["src/*"],
  24. "@build/*": ["build/*"],
  25. "/#/*": ["types/*"]
  26. },
  27. "types": ["node", "vite/client", "element-plus/global"],
  28. "typeRoots": ["./node_modules/@types/", "./types"]
  29. },
  30. "include": [
  31. "src/**/*.ts",
  32. "src/**/*.tsx",
  33. "src/**/*.vue",
  34. "types/*.d.ts",
  35. "mock/*.ts",
  36. "vite.config.ts"
  37. ],
  38. "exclude": ["node_modules", "dist", "**/*.js"]
  39. }