tsconfig.json 698 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  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. "paths": {
  14. "/src/*": [
  15. "src/*"
  16. ],
  17. "/osmd-extended/*": [
  18. "osmd-extended/*"
  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. "osmd-extended/*.ts",
  35. ],
  36. "exclude": [
  37. "node_modules"
  38. ]
  39. }