diff options
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/tsc2/file_exportc.ts | 1 | ||||
-rw-r--r-- | cli/tests/tsc2/file_reexports.ts | 3 | ||||
-rw-r--r-- | cli/tests/tsc2/https_deno.land-x-c.d.ts | 1 | ||||
-rw-r--r-- | cli/tests/tsc2/https_deno.land-x-c.js | 1 |
4 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/tsc2/file_exportc.ts b/cli/tests/tsc2/file_exportc.ts new file mode 100644 index 000000000..efcc5bb46 --- /dev/null +++ b/cli/tests/tsc2/file_exportc.ts @@ -0,0 +1 @@ +export * as c from "https://deno.land/x/c.js"; diff --git a/cli/tests/tsc2/file_reexports.ts b/cli/tests/tsc2/file_reexports.ts new file mode 100644 index 000000000..b26297423 --- /dev/null +++ b/cli/tests/tsc2/file_reexports.ts @@ -0,0 +1,3 @@ +import * as c from "./exportc.ts"; + +console.log(c.c); diff --git a/cli/tests/tsc2/https_deno.land-x-c.d.ts b/cli/tests/tsc2/https_deno.land-x-c.d.ts new file mode 100644 index 000000000..bf3a09240 --- /dev/null +++ b/cli/tests/tsc2/https_deno.land-x-c.d.ts @@ -0,0 +1 @@ +export const c: string; diff --git a/cli/tests/tsc2/https_deno.land-x-c.js b/cli/tests/tsc2/https_deno.land-x-c.js new file mode 100644 index 000000000..7f2cfac77 --- /dev/null +++ b/cli/tests/tsc2/https_deno.land-x-c.js @@ -0,0 +1 @@ +export const c = "c"; |