mirror of
https://github.com/swc-project/swc.git
synced 2025-01-05 12:03:47 +03:00
6 lines
212 B
JavaScript
6 lines
212 B
JavaScript
|
import data from "./data.json" assert { type: "json" };
|
||
|
export { default as data2 } from "./data2.json" assert { type: "json" };
|
||
|
export * as data3 from "./data3.json" assert { type: "json" };
|
||
|
|
||
|
console.log(data);
|