summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/npm/cjs-invalid-name-exports/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/npm/cjs-invalid-name-exports/main.ts')
-rw-r--r--cli/tests/testdata/npm/cjs-invalid-name-exports/main.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/tests/testdata/npm/cjs-invalid-name-exports/main.ts b/cli/tests/testdata/npm/cjs-invalid-name-exports/main.ts
new file mode 100644
index 000000000..9bdf0e43b
--- /dev/null
+++ b/cli/tests/testdata/npm/cjs-invalid-name-exports/main.ts
@@ -0,0 +1,3 @@
+import * as foo from "npm:@denotest/cjs-invalid-name-exports";
+
+console.log(foo);