From 10654fa95553866c63a56a7f84c7ec47fb7aac9c Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Wed, 14 Oct 2020 10:52:49 +1100 Subject: refactor(cli): add tsc2 (#7942) Ref #7225 --- cli/tests/tsc2/file_main.ts | 1 + cli/tests/tsc2/https_deno.land-x-a.ts | 3 +++ cli/tests/tsc2/https_deno.land-x-b.ts | 1 + cli/tests/tsc2/https_deno.land-x-mod.ts | 1 + 4 files changed, 6 insertions(+) create mode 100644 cli/tests/tsc2/file_main.ts create mode 100644 cli/tests/tsc2/https_deno.land-x-a.ts create mode 100644 cli/tests/tsc2/https_deno.land-x-b.ts create mode 100644 cli/tests/tsc2/https_deno.land-x-mod.ts (limited to 'cli/tests') diff --git a/cli/tests/tsc2/file_main.ts b/cli/tests/tsc2/file_main.ts new file mode 100644 index 000000000..a45477fde --- /dev/null +++ b/cli/tests/tsc2/file_main.ts @@ -0,0 +1 @@ +console.log("hello deno"); diff --git a/cli/tests/tsc2/https_deno.land-x-a.ts b/cli/tests/tsc2/https_deno.land-x-a.ts new file mode 100644 index 000000000..72b3a67bc --- /dev/null +++ b/cli/tests/tsc2/https_deno.land-x-a.ts @@ -0,0 +1,3 @@ +import * as b from "./b.ts"; + +console.log(b); diff --git a/cli/tests/tsc2/https_deno.land-x-b.ts b/cli/tests/tsc2/https_deno.land-x-b.ts new file mode 100644 index 000000000..59d168993 --- /dev/null +++ b/cli/tests/tsc2/https_deno.land-x-b.ts @@ -0,0 +1 @@ +export const b = "b"; diff --git a/cli/tests/tsc2/https_deno.land-x-mod.ts b/cli/tests/tsc2/https_deno.land-x-mod.ts new file mode 100644 index 000000000..a45477fde --- /dev/null +++ b/cli/tests/tsc2/https_deno.land-x-mod.ts @@ -0,0 +1 @@ +console.log("hello deno"); -- cgit v1.2.3