tsconfig.json 485 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "compilerOptions": {
  3. "target": "ES2020",
  4. "module": "ES2020",
  5. "moduleResolution": "node",
  6. "strict": true,
  7. "jsx": "preserve",
  8. "sourceMap": true,
  9. "resolveJsonModule": true,
  10. "esModuleInterop": true,
  11. "baseUrl": ".",
  12. "paths": {
  13. "@/*": [
  14. "src/*"
  15. ]
  16. },
  17. "lib": [
  18. "ESNext",
  19. "dom"
  20. ],
  21. "skipLibCheck": true,
  22. },
  23. "include": [
  24. "src/**/*",
  25. "src/**/*.vue"
  26. ],
  27. "exclude": [
  28. "node_modules"
  29. ]
  30. }