tsconfig.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. "paths": {
  22. "@/*": ["src/*"],
  23. "@build/*": ["build/*"]
  24. },
  25. "types": [
  26. "node",
  27. "vite/client",
  28. "element-plus/global",
  29. "@pureadmin/table/volar",
  30. "@pureadmin/descriptions/volar",
  31. "unplugin-vue-define-options/macros-global"
  32. ],
  33. "typeRoots": ["./node_modules/@types/", "./types"]
  34. },
  35. "include": [
  36. "mock/*.ts",
  37. "src/**/*.ts",
  38. "src/**/*.tsx",
  39. "src/**/*.vue",
  40. "types/*.d.ts",
  41. "vite.config.ts"
  42. ],
  43. "exclude": ["node_modules", "dist", "**/*.js"]
  44. }