tsconfig.json 725 B

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