blob: 6e4a32d8e838b80a644915e5992ebd1e0dbcec75 (
plain)
1
2
3
4
5
6
7
|
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());
|