tsconfig.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. "types": [
  24. "vite/client"
  25. ],
  26. "typeRoots": [
  27. "./node_modules/@types/",
  28. "./types"
  29. ],
  30. "noImplicitAny": false,
  31. "skipLibCheck": true,
  32. "paths": {
  33. "@/*": [
  34. "src/*"
  35. ],
  36. "/#/*": [
  37. "types/*"
  38. ]
  39. }
  40. },
  41. "include": [
  42. "src/**/*.ts",
  43. "src/**/*.d.ts",
  44. "src/**/*.tsx",
  45. "src/**/*.vue",
  46. "types/**/*.d.ts",
  47. "types/**/*.ts",
  48. "build/**/*.ts",
  49. "build/**/*.d.ts",
  50. "mock/**/*.ts",
  51. "components.d.ts",
  52. "vite.config.ts"
  53. ],
  54. "exclude": [
  55. "node_modules",
  56. "dist",
  57. "**/*.js"
  58. ]
  59. }