diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-11-08 07:00:42 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-08 07:00:42 +1100 |
commit | e9edc05bed299a3e97cf9a8136e6d790f5fc3f14 (patch) | |
tree | 325229ac544bfeb48caeb577354d6cfcff3d8630 /cli/tests/fix_emittable_skipped.js | |
parent | 37b7024a8feee04a3fd9e2705c7858f53f2f44d0 (diff) |
fix(cli): ensure that transitory dependencies are emitted (#8275)
Fixes #8111
Diffstat (limited to 'cli/tests/fix_emittable_skipped.js')
-rw-r--r-- | cli/tests/fix_emittable_skipped.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cli/tests/fix_emittable_skipped.js b/cli/tests/fix_emittable_skipped.js new file mode 100644 index 000000000..f61907b06 --- /dev/null +++ b/cli/tests/fix_emittable_skipped.js @@ -0,0 +1,7 @@ +/// <reference types="./subdir/emittable.d.ts" /> + +import "./subdir/polyfill.ts"; + +export const a = "a"; + +console.log(globalThis.polyfill); |