tsconfig.json 581 B

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