diff options
Diffstat (limited to 'tests/specs/run/fix_tsc_file_exists/tsc/node_modules')
-rw-r--r-- | tests/specs/run/fix_tsc_file_exists/tsc/node_modules/b.js | 2 | ||||
-rw-r--r-- | tests/specs/run/fix_tsc_file_exists/tsc/node_modules/c.js | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/tests/specs/run/fix_tsc_file_exists/tsc/node_modules/b.js b/tests/specs/run/fix_tsc_file_exists/tsc/node_modules/b.js new file mode 100644 index 000000000..191660935 --- /dev/null +++ b/tests/specs/run/fix_tsc_file_exists/tsc/node_modules/b.js @@ -0,0 +1,2 @@ +import c from "./c.js"; +export { c }; diff --git a/tests/specs/run/fix_tsc_file_exists/tsc/node_modules/c.js b/tests/specs/run/fix_tsc_file_exists/tsc/node_modules/c.js new file mode 100644 index 000000000..cff71c44a --- /dev/null +++ b/tests/specs/run/fix_tsc_file_exists/tsc/node_modules/c.js @@ -0,0 +1 @@ +export default function c() {} |