tsconfig.json 780 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "strict": true,
  6. "jsx": "preserve",
  7. "importHelpers": true,
  8. "moduleResolution": "node",
  9. "experimentalDecorators": true,
  10. "skipLibCheck": true,
  11. "esModuleInterop": true,
  12. "allowSyntheticDefaultImports": true,
  13. "suppressImplicitAnyIndexErrors":true,
  14. "sourceMap": true,
  15. "baseUrl": ".",
  16. "types": [
  17. "node",
  18. "webpack-env",
  19. "jest"
  20. ],
  21. "paths": {
  22. "@/*": [
  23. "src/*"
  24. ]
  25. },
  26. "lib": [
  27. "esnext",
  28. "dom",
  29. "dom.iterable",
  30. "scripthost"
  31. ]
  32. },
  33. "include": [
  34. "src/**/*.ts",
  35. "src/**/*.tsx",
  36. "src/**/*.vue",
  37. "tests/**/*.ts",
  38. "tests/**/*.tsx"
  39. ],
  40. "exclude": [
  41. "node_modules"
  42. ]
  43. }