tsconfig.json 458 B

12345678910111213141516171819202122232425262728
  1. {
  2. "compilerOptions": {
  3. "target": "ES2020",
  4. "module": "ESNext",
  5. "moduleResolution": "Bundler",
  6. "strict": true,
  7. "jsx": "preserve",
  8. "resolveJsonModule": true,
  9. "allowSyntheticDefaultImports": true,
  10. "baseUrl": ".",
  11. "paths": {
  12. "@/*": ["./*"]
  13. }
  14. },
  15. "include": [
  16. "**/*.ts",
  17. "**/*.tsx",
  18. "**/*.vue",
  19. "**/*.d.ts",
  20. "*.d.ts"
  21. ],
  22. "exclude": [
  23. "node_modules",
  24. "dist",
  25. "unpackage"
  26. ]
  27. }