modified lib-jitsi-meet dev repo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.json 497B

12345678910111213141516171819202122232425262728
  1. {
  2. "compilerOptions": {
  3. "target": "es6",
  4. "module": "es6",
  5. "sourceMap": true,
  6. "allowJs": true,
  7. "skipLibCheck": true,
  8. "esModuleInterop": true,
  9. "moduleResolution": "node",
  10. "allowSyntheticDefaultImports": true,
  11. "lib": [
  12. "esnext",
  13. "dom"
  14. ],
  15. "outDir": "dist/esm/",
  16. },
  17. "exclude": [
  18. "dist",
  19. "doc",
  20. "types",
  21. "**/*.spec.js",
  22. "**/*.spec.ts",
  23. "*.conf*.js",
  24. "index.js",
  25. "lib-jitsi-meet.*.js",
  26. "webpack*.js",
  27. ]
  28. }