tsconfig.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. "public/**/*.ts",
  48. "components.d.ts",
  49. "vite.config.ts"
  50. ],
  51. "exclude": [
  52. "node_modules",
  53. "dist",
  54. "**/*.js"
  55. ]
  56. }