mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 19:52:21 +03:00
7 lines
259 B
JavaScript
7 lines
259 B
JavaScript
import data from "./data.json" assert { type: "json" };
|
|
import "./data2.json" assert { type: "json" };
|
|
export { default as data3 } from "./data3.json" assert { type: "json" };
|
|
export * as data4 from "./data4.json" assert { type: "json" };
|
|
|
|
console.log(data);
|