Browser extension that demonstrates the Web Annotation Discovery mechanism: subscribe to people’s annotation collections/‘feeds’, to see their notes on the web; and create & publish annotations yourself.

web-annotation-discovery-we.../ tsconfig.json
17 lines
357 B

  1. {
  2. "compilerOptions": {
  3. "strict": true,
  4. "lib": ["DOM", "DOM.Iterable"],
  5. "target": "ES2020",
  6. "esModuleInterop": true,
  7. "moduleResolution": "Node",
  8. "resolveJsonModule": true,
  9. "jsx": "react",
  10. "jsxFactory": "h",
  11. "jsxFragmentFactory": "Fragment",
  12. "plugins": [
  13. { "name": "typescript-plugin-css-modules" }
  14. ]
  15. }
  16. }