tsconfig.json 646 B

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