Skip to content

Commit

Permalink
include the shim files in shipped files
Browse files Browse the repository at this point in the history
  • Loading branch information
deyaaeldeen committed Sep 16, 2020
1 parent a0a847e commit 6b853dd
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions sdk/core/abort-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"files": [
"dist/",
"dist-esm/src/",
"shims-public.d.ts",
"types/abort-controller.d.ts",
"README.md",
"LICENSE"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion sdk/core/abort-controller/src/AbortSignal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Licensed under the MIT license.

// eslint-disable-next-line @typescript-eslint/triple-slash-reference
/// <reference path="./shims-public.d.ts" />
/// <reference path="../shims-public.d.ts" />
type AbortEventListener = (this: AbortSignalLike, ev?: any) => any;

const listenersMap = new WeakMap<AbortSignal, AbortEventListener[]>();
Expand Down

0 comments on commit 6b853dd

Please sign in to comment.