Initial commit. POC

This commit is contained in:
2020-08-21 08:41:38 +02:00
commit d039c391e7
8 changed files with 652 additions and 0 deletions

12
rollup.config.js Normal file
View File

@@ -0,0 +1,12 @@
import resolve from "@rollup/plugin-node-resolve";
export default {
input: "./src/main.js",
output: [
{
file: "index.js",
format: "cjs"
}
],
plugins: [resolve()]
};