summaryrefslogtreecommitdiff
path: root/cli/tests/tsc2/file_libref.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/tsc2/file_libref.ts')
-rw-r--r--cli/tests/tsc2/file_libref.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/cli/tests/tsc2/file_libref.ts b/cli/tests/tsc2/file_libref.ts
new file mode 100644
index 000000000..8af5a83d0
--- /dev/null
+++ b/cli/tests/tsc2/file_libref.ts
@@ -0,0 +1,7 @@
+/// <reference no-default-lib="true"/>
+/// <reference lib="dom" />
+/// <reference lib="deno.ns" />
+
+export const div = document.createElement("div");
+div.innerHTML = `<span>Hello World!</span>`;
+console.log(Deno.args);