diff options
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/tsc2/file_main.ts | 1 | ||||
-rw-r--r-- | cli/tests/tsc2/https_deno.land-x-a.ts | 3 | ||||
-rw-r--r-- | cli/tests/tsc2/https_deno.land-x-b.ts | 1 | ||||
-rw-r--r-- | cli/tests/tsc2/https_deno.land-x-mod.ts | 1 |
4 files changed, 6 insertions, 0 deletions
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"); |