summaryrefslogtreecommitdiff
path: root/tests/registry/npm/@denotest/imports-package-json/1.0.0/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/registry/npm/@denotest/imports-package-json/1.0.0/main.js')
-rw-r--r--tests/registry/npm/@denotest/imports-package-json/1.0.0/main.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/registry/npm/@denotest/imports-package-json/1.0.0/main.js b/tests/registry/npm/@denotest/imports-package-json/1.0.0/main.js
new file mode 100644
index 000000000..9e7c247b7
--- /dev/null
+++ b/tests/registry/npm/@denotest/imports-package-json/1.0.0/main.js
@@ -0,0 +1,13 @@
+import hi from "#hi";
+import bye from "./sub_path/main.js";
+import fs from "#fs";
+import path from "#path";
+import fs2 from "#fs2";
+
+export default {
+ hi,
+ bye,
+ fs,
+ path,
+ fs2,
+};