tsconfig.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "moduleResolution": "node",
  6. "strict": true,
  7. "forceConsistentCasingInFileNames": true,
  8. "allowSyntheticDefaultImports": true,
  9. "strictFunctionTypes": false,
  10. "jsx": "preserve",
  11. "baseUrl": ".",
  12. "allowJs": true,
  13. "sourceMap": true,
  14. "esModuleInterop": true,
  15. "resolveJsonModule": true,
  16. "noUnusedLocals": true,
  17. "noUnusedParameters": true,
  18. "experimentalDecorators": true,
  19. "lib": [
  20. "dom",
  21. "esnext"
  22. ],
  23. "typeRoots": [
  24. "./node_modules/@types/",
  25. "./types"
  26. ],
  27. "noImplicitAny": false,
  28. "skipLibCheck": true,
  29. "paths": {
  30. "@/*": [
  31. "src/*"
  32. ],
  33. "/#/*": [
  34. "types/*"
  35. ]
  36. }
  37. },
  38. "include": [
  39. "src/**/*.ts",
  40. "src/**/*.d.ts",
  41. "src/**/*.tsx",
  42. "src/**/*.vue",
  43. "types/**/*.d.ts",
  44. "types/**/*.ts",
  45. "build/**/*.ts",
  46. "build/**/*.d.ts",
  47. "mock/**/*.ts",
  48. "public/**/*.ts",
  49. "components.d.ts",
  50. "vite.config.ts"
  51. ],
  52. "exclude": [
  53. "node_modules",
  54. "dist",
  55. "**/*.js"
  56. ]
  57. }