tsconfig.json 806 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. "noImplicitAny":true,
  15. "sourceMap": true,
  16. "baseUrl": ".",
  17. "types": [
  18. "node",
  19. "webpack-env",
  20. "jest"
  21. ],
  22. "paths": {
  23. "@/*": [
  24. "src/*"
  25. ]
  26. },
  27. "lib": [
  28. "esnext",
  29. "dom",
  30. "dom.iterable",
  31. "scripthost"
  32. ]
  33. },
  34. "include": [
  35. "src/**/*.ts",
  36. "src/**/*.tsx",
  37. "src/**/*.vue",
  38. "tests/**/*.ts",
  39. "tests/**/*.tsx"
  40. ],
  41. "exclude": [
  42. "node_modules"
  43. ]
  44. }