mirror of
https://github.com/swc-project/swc.git
synced 2025-01-05 03:57:10 +03:00
c047e0e54d
swc_bundler: - Create variables for export while preparing a module. (denoland/deno#9560) - Fix order of statements. - Invoke dce multiple time if required. (denoland/deno#9546) swc_ecma_transforms_optimization: - dce: Track modifications correctly.
13 lines
181 B
TypeScript
13 lines
181 B
TypeScript
const __default = {
|
|
"a": "a",
|
|
"b": "b",
|
|
"c": "c"
|
|
};
|
|
const __default1 = {
|
|
"a": "a1",
|
|
"b": "b1",
|
|
"c": "c1"
|
|
};
|
|
console.log(__default);
|
|
console.log(__default1);
|