diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2019-04-29 15:58:31 +0100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-04-29 07:58:31 -0700 |
commit | 1a0f53a807abad0e9ebfcf437f3dade6b01d7f84 (patch) | |
tree | 013eb8d15383a22a4e2c4c5502ba37035b397903 /tests/config.ts | |
parent | 73be183864d0983821e683198d9a6ea9008f070a (diff) |
Add support for custom tsconfig.json (#2089)
Use `--config`
Diffstat (limited to 'tests/config.ts')
-rw-r--r-- | tests/config.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/config.ts b/tests/config.ts new file mode 100644 index 000000000..e08061e77 --- /dev/null +++ b/tests/config.ts @@ -0,0 +1,5 @@ +const map = new Map<string, { foo: string }>(); + +if (map.get("bar").foo) { + console.log("here"); +} |