summaryrefslogtreecommitdiff
path: root/tests/testdata/import_attributes/dynamic_import.ts
blob: afff52e1a7872fcd64e61fc0cb42f694778849e2 (plain)
1
2
3
4
5
6
const data1 = await import("./data.json", { with: { type: "json" } });
// deno-lint-ignore no-import-assertions
const data2 = await import("./data.json", { assert: { type: "json" } });

console.log(data1);
console.log(data2);