tsconfig.json 958 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "jsx": "preserve",
  5. "lib": ["DOM", "ESNext"],
  6. "noLib": false,
  7. "experimentalDecorators": true,
  8. "baseUrl": ".",
  9. "module": "ESNext",
  10. "moduleResolution": "node",
  11. "paths": {
  12. "@/*": ["src/*"]
  13. },
  14. "resolveJsonModule": true,
  15. "types": ["vite/client"],
  16. "allowJs": true,
  17. "strict": true,
  18. "strictFunctionTypes": false,
  19. "noImplicitAny": false,
  20. "noUnusedLocals": true,
  21. "noUnusedParameters": true,
  22. "removeComments": true,
  23. "sourceMap": true,
  24. "allowSyntheticDefaultImports": true,
  25. "esModuleInterop": true,
  26. "forceConsistentCasingInFileNames": true,
  27. "skipLibCheck": true
  28. },
  29. "include": [
  30. "src/**/*.ts",
  31. "src/**/*.d.ts",
  32. "src/**/*.tsx",
  33. "src/**/*.vue",
  34. "src/types/**/*.d.ts",
  35. "src/types/**/*.ts",
  36. "build/**/*.ts",
  37. "build/**/*.d.ts",
  38. "vite.config.ts"
  39. ],
  40. "exclude": ["node_modules", "dist"]
  41. }