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.

52 lines
1.0 KiB

  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "ESNext",
  5. "moduleResolution": "bundler",
  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": [
  21. "ESNext",
  22. "DOM"
  23. ],
  24. "paths": {
  25. "@/*": [
  26. "src/*"
  27. ],
  28. "@build/*": [
  29. "build/*"
  30. ]
  31. },
  32. "types": [
  33. "node",
  34. "vite/client",
  35. "element-plus/global",
  36. "@pureadmin/table/volar",
  37. "@pureadmin/descriptions/volar"
  38. ]
  39. },
  40. "include": [
  41. "mock/*.ts",
  42. "src/**/*.ts",
  43. "src/**/*.tsx",
  44. "src/**/*.vue",
  45. "types/*.d.ts",
  46. "vite.config.ts"
  47. ],
  48. "exclude": [
  49. "dist",
  50. "**/*.js",
  51. "node_modules"
  52. ]
  53. }