tsconfig.json 970 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. ]
  36. },
  37. "include": [
  38. "mock/*.ts",
  39. "src/**/*.ts",
  40. "src/**/*.tsx",
  41. "src/**/*.vue",
  42. "src/typings/*.d.ts",
  43. "vite.config.ts",
  44. "./auto-imports.d.ts"
  45. ],
  46. "exclude": [
  47. "dist",
  48. "**/*.js",
  49. "node_modules"
  50. ]
  51. }