tsconfig.json 772 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "module": "esnext",
  5. "strict": true,
  6. "jsx": "preserve",
  7. "importHelpers": true,
  8. "moduleResolution": "node",
  9. "experimentalDecorators": true,
  10. "allowJs": true,
  11. "skipLibCheck": true,
  12. "esModuleInterop": true,
  13. "allowSyntheticDefaultImports": true,
  14. "sourceMap": true,
  15. "baseUrl": ".",
  16. "types": [
  17. "webpack-env",
  18. "jest"
  19. ],
  20. "paths": {
  21. "@/*": [
  22. "src/*"
  23. ]
  24. },
  25. "lib": [
  26. "esnext",
  27. "dom",
  28. "dom.iterable",
  29. "scripthost"
  30. ],
  31. "resolveJsonModule": true
  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. }