diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-09-23 11:39:20 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-23 11:39:20 +1000 |
commit | 751bb45a0a4ca4ab3baf5e5037c0b10f0430aeb6 (patch) | |
tree | b02ca1ea7f96b9d844fef5981383fffea788c9c3 /cli/tests/tsc/node_modules | |
parent | 68fd7a927b26c3e72cf73515821450f3aa252014 (diff) |
fix: ignore fileExists in tsc host (#7635)
Fixes #7630
Diffstat (limited to 'cli/tests/tsc/node_modules')
-rw-r--r-- | cli/tests/tsc/node_modules/b.js | 2 | ||||
-rw-r--r-- | cli/tests/tsc/node_modules/c.js | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/cli/tests/tsc/node_modules/b.js b/cli/tests/tsc/node_modules/b.js new file mode 100644 index 000000000..191660935 --- /dev/null +++ b/cli/tests/tsc/node_modules/b.js @@ -0,0 +1,2 @@ +import c from "./c.js"; +export { c }; diff --git a/cli/tests/tsc/node_modules/c.js b/cli/tests/tsc/node_modules/c.js new file mode 100644 index 000000000..cff71c44a --- /dev/null +++ b/cli/tests/tsc/node_modules/c.js @@ -0,0 +1 @@ +export default function c() {} |