tsconfig.json 988 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "compilerOptions": {
  3. "declaration": false,
  4. "noImplicitAny": false,
  5. "removeComments": true,
  6. "noLib": false,
  7. "experimentalDecorators": true,
  8. "forceConsistentCasingInFileNames": true,
  9. "target": "esnext",
  10. "useDefineForClassFields": true,
  11. "module": "esnext",
  12. "moduleResolution": "node",
  13. "strict": true,
  14. "jsx": "preserve",
  15. "sourceMap": true,
  16. "resolveJsonModule": true,
  17. "esModuleInterop": true,
  18. "skipLibCheck": true,
  19. "allowSyntheticDefaultImports": true,
  20. "lib": ["esnext", "dom"],
  21. "types": [
  22. "vite/client",
  23. "node",
  24. "naive-ui/volar"
  25. ],
  26. "baseUrl": "./",
  27. "paths": {
  28. "@/*": [
  29. "src/*"
  30. ]
  31. }
  32. },
  33. "include": [
  34. "src/**/*.ts",
  35. "src/**/*.md",
  36. "src/**/*.d.ts",
  37. "src/**/*.tsx",
  38. "src/**/*.vue",
  39. "__tests__/**/*.ts",
  40. "./auto-imports.d.ts",
  41. "./components.d.ts",
  42. "./components-instance.d.ts"
  43. ],
  44. "exclude": ["node_modules"]
  45. }