tsconfig.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. "importHelpers": true,
  11. "experimentalDecorators": true,
  12. "skipLibCheck": true,
  13. "esModuleInterop": true,
  14. "isolatedModules": true,
  15. "allowSyntheticDefaultImports": true,
  16. "forceConsistentCasingInFileNames": true,
  17. "sourceMap": true,
  18. "baseUrl": ".",
  19. "allowJs": false,
  20. "resolveJsonModule": true,
  21. "lib": [
  22. "ESNext",
  23. "DOM"
  24. ],
  25. "paths": {
  26. "@/*": [
  27. "src/*"
  28. ],
  29. "@build/*": [
  30. "build/*"
  31. ]
  32. },
  33. "types": [
  34. "node",
  35. "vite/client",
  36. "element-plus/global",
  37. "@pureadmin/table/volar",
  38. "unplugin-icons/types/vue",
  39. "@pureadmin/descriptions/volar"
  40. ]
  41. },
  42. "include": [
  43. "mock/*.ts",
  44. "src/**/*.ts",
  45. "src/**/*.tsx",
  46. "src/**/*.vue",
  47. "types/*.d.ts",
  48. "vite.config.ts"
  49. ],
  50. "exclude": [
  51. "dist",
  52. "**/*.js",
  53. "node_modules"
  54. ]
  55. }