1
2
3
4
5
6
7
8
9
10
11
12
import build from "https://esm.sh/build";
const ret = await build({
dependencies: {
"@aws-sdk/client-dynamodb": "^3.587.0",
},
source: `
/* @jsx h */
export * as ddb from "@aws-sdk/client-dynamodb";
`,
// for types checking and LSP completion
});
const ddb = await import(ret.url);