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