Fixed AES warnings during rollup.

This commit is contained in:
Richard Moore 2022-12-03 16:59:49 -05:00
parent d3f5f6f726
commit 2e579ec1ae

View File

@ -16,6 +16,7 @@ function getConfig(opts) {
format: "esm",
sourcemap: true
},
context: "window",
treeshake: false,
plugins: [ nodeResolve({
exportConditions,
@ -23,7 +24,6 @@ function getConfig(opts) {
modulesOnly: true,
preferBuiltins: false
}) ],
// external: [ "crypto" ]
};
}