You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.json 638 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "moduleResolution": "node",
  6. "esModuleInterop": true,
  7. "strict": true,
  8. "jsx": "preserve",
  9. "sourceMap": true,
  10. "resolveJsonModule": true,
  11. "experimentalDecorators": true,
  12. "types": ["vite/client"],
  13. "allowSyntheticDefaultImports": true,
  14. "skipLibCheck": true,
  15. "noImplicitAny": true,
  16. "baseUrl": "./",
  17. "paths": {
  18. "@/*": ["src/*"]
  19. }
  20. },
  21. "include": [
  22. "src/**/*.ts",
  23. "src/**/*.tsx",
  24. "src/**/*.vue",
  25. "tests/**/*.ts",
  26. "tests/**/*.tsx",
  27. "src/**/*.d.ts",
  28. "src/types/**/*.d.ts"
  29. ],
  30. }