tsconfig.json 997 B

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