diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/rollup.config.js b/rollup.config.js deleted file mode 100644 index c7bdeb4..0000000 --- a/rollup.config.js +++ /dev/null @@ -1,28 +0,0 @@ -import typescript from 'rollup-plugin-typescript2'; -import vue from 'rollup-plugin-vue'; -import clear from 'rollup-plugin-clear'; - -export default async function config(args) { - return { - input: 'src/index.ts', - output: { - dir: 'dist', - format: 'cjs', - sourcemap: true, - }, - plugins: [ - vue(), - typescript({ - tsconfigOverride: { - compilerOptions: { - declaration: true, - }, - include: null, - }, - }), - clear({ - targets: ['./dist'], - }) - ], - }; -} \ No newline at end of file