tsconfig.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "ESNext",
  5. "moduleResolution": "bundler",
  6. "strict": false,
  7. "strictFunctionTypes": false,
  8. "noImplicitThis": true,
  9. "jsx": "preserve",
  10. "jsxImportSource": "vue",
  11. "skipLibCheck": true,
  12. "esModuleInterop": true,
  13. "isolatedModules": true,
  14. "allowSyntheticDefaultImports": true,
  15. "forceConsistentCasingInFileNames": true,
  16. "sourceMap": true,
  17. "allowJs": false,
  18. "resolveJsonModule": true,
  19. "lib": [
  20. "ESNext",
  21. "DOM"
  22. ],
  23. "paths": {
  24. "@/*": [
  25. "./src/*"
  26. ],
  27. "@build/*": [
  28. "./build/*"
  29. ]
  30. },
  31. "types": [
  32. "node",
  33. "vite/client",
  34. "element-plus/global",
  35. "@pureadmin/table/volar",
  36. "unplugin-icons/types/vue",
  37. "@pureadmin/descriptions/volar"
  38. ]
  39. },
  40. "include": [
  41. "mock/*.ts",
  42. "build/*.ts",
  43. "src/**/*.ts",
  44. "src/**/*.tsx",
  45. "src/**/*.vue",
  46. "types/*.d.ts",
  47. "vite.config.ts"
  48. ],
  49. "exclude": [
  50. "dist",
  51. "**/*.js",
  52. "node_modules"
  53. ]
  54. }