First commit

This commit is contained in:
Jonathan Staab
2023-03-25 10:08:17 -05:00
commit 39d001280c
12 changed files with 4962 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import path from 'path'
import {defineConfig} from 'vite'
import eslint from 'vite-plugin-eslint'
export default defineConfig({
plugins: [eslint()],
build: {
lib: {
entry: path.resolve(__dirname, 'lib/main.ts'),
name: 'paravel',
fileName: (format) => `paravel.${format}.js`
}
}
})