blob: b9a17b538a043486785507463c5f381d7dd3de19 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import "i-am-bundled/cjs";
import "i-am-bundled/esm";
import "always-bundled-module/esm";
import "always-bundled-module/cjs";
import { foo } from "i-am-bundled/esm";
import { foo as foo2 } from "always-bundled-module/esm";
import cJS from "always-bundled-module/cjs";
foo();
foo2();
cJS();
export default cJS();
|