This commit is contained in:
2023-10-05 17:01:45 +03:00
parent 5cc8f45f90
commit a68f3964e1
9 changed files with 72 additions and 45 deletions

13
vite.config.ts Normal file
View File

@@ -0,0 +1,13 @@
import { defineConfig } from 'vite'
import dts from 'vite-plugin-dts'
export default defineConfig({
plugins: [dts()],
build: {
lib: {
entry: 'src/index.ts',
name: 'axp-ts',
fileName: 'index'
}
}
})