mirror of
https://github.com/denoland/deno.git
synced 2024-11-30 16:40:57 -05:00
6 lines
153 B
TypeScript
6 lines
153 B
TypeScript
|
import data1 from "./data.json" with { type: "json" };
|
||
|
import data2 from "./data.json" assert { type: "json" };
|
||
|
|
||
|
console.log(data1);
|
||
|
console.log(data2);
|