mirror of
https://github.com/denoland/deno.git
synced 2024-11-26 16:09:27 -05:00
8 lines
349 B
TypeScript
8 lines
349 B
TypeScript
|
import { getKind as getKind1 } from "npm:@denotest/dual-cjs-esm-dep";
|
||
|
// this should still be able to be resolved even though it's missing the
|
||
|
// "@denotest/dual-cjs-esm" package because the above import will resolve it
|
||
|
import { getKind as getKind2 } from "npm:@denotest/dual-cjs-esm-dep-missing";
|
||
|
|
||
|
console.log(getKind1());
|
||
|
console.log(getKind2());
|