tsconfig.json 740 B

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