2023-09-07 09:09:16 -04:00
|
|
|
import data1 from "./data.json" with { type: "json" };
|
2024-06-04 19:09:29 -04:00
|
|
|
// deno-lint-ignore no-import-assertions
|
2023-09-07 09:09:16 -04:00
|
|
|
import data2 from "./data.json" assert { type: "json" };
|
|
|
|
|
|
|
|
console.log(data1);
|
|
|
|
console.log(data2);
|