tsconfig.json 687 B

12345678910111213141516171819202122232425262728293031
  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. "resolveJsonModule": true,
  13. "sourceMap": true,
  14. "noImplicitAny": false,
  15. "baseUrl": ".",
  16. "types": ["webpack-env"],
  17. "paths": {
  18. "@/*": ["src/*"]
  19. },
  20. "lib": ["esnext", "dom", "dom.iterable", "scripthost"]
  21. },
  22. "include": [
  23. "src/**/*.ts",
  24. "src/**/*.tsx",
  25. "src/**/*.vue",
  26. "tests/**/*.ts",
  27. "tests/**/*.tsx",
  28. "src/config.js"
  29. ],
  30. "exclude": ["node_modules"]
  31. }