summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/tsc2/file_libref.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/tsc2/file_libref.ts')
-rw-r--r--cli/tests/testdata/tsc2/file_libref.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/cli/tests/testdata/tsc2/file_libref.ts b/cli/tests/testdata/tsc2/file_libref.ts
new file mode 100644
index 000000000..6f37da139
--- /dev/null
+++ b/cli/tests/testdata/tsc2/file_libref.ts
@@ -0,0 +1,8 @@
+// deno-lint-ignore-file
+/// <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);