tsconfig.json 613 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "composite": true,
  5. "skipLibCheck": true,
  6. "module": "ESNext",
  7. "moduleResolution": "Node",
  8. "resolveJsonModule": true,
  9. "noImplicitThis": true,
  10. "allowSyntheticDefaultImports": true,
  11. "allowJs": true,
  12. "sourceMap": true,
  13. "baseUrl": ".",
  14. "paths": {
  15. "@/*": ["./src/*"]
  16. },
  17. "outDir": "dist",
  18. "lib": ["esnext", "dom"]
  19. },
  20. "exclude": ["node_modules"],
  21. "include": [
  22. "src/**/*.ts",
  23. "src/**/*.js",
  24. "src/**/*.d.ts",
  25. "src/**/*.tsx",
  26. "src/**/*.jsx",
  27. "src/**/*.vue",
  28. "src/**/*.json"
  29. ]
  30. }