summaryrefslogtreecommitdiff
path: root/tests/specs/run/ts_import_assertions/with.ts
blob: 58b7fb03d3f09087eaf2b54fdc966ce9dc56e89d (plain)
1
2
3
import test from "./data.json" with { type: "json" };
console.log(test);
console.log((await import("./data.json", { with: { type: "json" } })).default);