tsconfig.json 989 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "extends": "../tsconfig.base.json",
  3. "compilerOptions": {
  4. "target": "esnext",
  5. "module": "esnext",
  6. "moduleResolution": "Node",
  7. "strict": false,
  8. "jsx": "preserve",
  9. "importHelpers": true,
  10. "experimentalDecorators": true,
  11. "strictFunctionTypes": false,
  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": ["dom", "esnext"],
  22. "paths": {
  23. "@/*": ["src/*"],
  24. "@build/*": ["build/*"]
  25. },
  26. "types": [
  27. "node",
  28. "vite/client",
  29. "element-plus/global",
  30. "@pureadmin/table/volar",
  31. "@pureadmin/descriptions/volar"
  32. ]
  33. },
  34. "include": [
  35. "src/**/*.ts",
  36. "src/**/*.tsx",
  37. "src/**/*.vue",
  38. "types/*.d.ts",
  39. "vite.config.ts"
  40. ],
  41. "exclude": ["dist", "**/*.js", "node_modules"]
  42. }