diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-10-28 11:52:20 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-28 11:52:20 +1100 |
commit | 6844caa9a552e3f8fd1f2139bdffdd090d48fe9a (patch) | |
tree | 5bed5cc8879e8169780d7c4c47ecf1cd3afd53bc /cli/tests | |
parent | dd01f206da0b7e1b305e70cdd3c98bf60fbefc5d (diff) |
fix(cli): restore tripleslash lib refs support (#8157)
Fixes #8147
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/tsc2/file_libref.ts | 7 |
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); |