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