diff options
Diffstat (limited to 'tests/testdata/run/ts_import_from_js/main.js')
-rw-r--r-- | tests/testdata/run/ts_import_from_js/main.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/testdata/run/ts_import_from_js/main.js b/tests/testdata/run/ts_import_from_js/main.js new file mode 100644 index 000000000..32d6c29a1 --- /dev/null +++ b/tests/testdata/run/ts_import_from_js/main.js @@ -0,0 +1,3 @@ +import { printHello } from "./deps.js"; +printHello(); +console.log("success"); |