Skip to main content
Module

x/dnt/tests/json_module_project/mod.ts

Deno to npm package build tool.
Go to Latest
File
import jsonData from "./data.json" assert { type: "json" };
export function getOutput() { return jsonData.prop;}
export async function getDynamicOutput() { const module = await import("./data.json", { assert: { type: "json" } }); return module.default.prop;}