1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-26 16:09:27 -05:00
denoland-deno/tests/testdata/npm/node_modules_deno_node_modules/main.ts

8 lines
349 B
TypeScript
Raw Normal View History

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());