tsconfig.dist-src.json 348 B

1234567891011
  1. {
  2. // this config is included in the published src directory to prevent TS errors
  3. // from appearing when users go to source, and VSCode opens the source .ts file
  4. // via declaration maps
  5. "include": ["index.ts"],
  6. "compilerOptions": {
  7. "target": "ES2015",
  8. "lib": ["DOM", "DOM.Iterable", "ES2018"],
  9. "moduleResolution": "node"
  10. }
  11. }