tsconfig.json 607 B

12345678910111213141516171819202122232425262728
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "strict": true,
  6. "jsx": "preserve",
  7. "importHelpers": true,
  8. "moduleResolution": "node",
  9. "skipLibCheck": true,
  10. "esModuleInterop": true,
  11. "allowSyntheticDefaultImports": true,
  12. "sourceMap": true,
  13. "baseUrl": ".",
  14. "types": ["webpack-env"],
  15. "paths": {
  16. "@/*": ["src/*"]
  17. },
  18. "lib": ["esnext", "dom", "dom.iterable", "scripthost"]
  19. },
  20. "include": [
  21. "src/**/*.ts",
  22. "src/**/*.tsx",
  23. "src/**/*.vue",
  24. "tests/**/*.ts",
  25. "tests/**/*.tsx"
  26. ],
  27. "exclude": ["node_modules"]
  28. }