24 lines
559 B
TypeScript
24 lines
559 B
TypeScript
import { resolve } from 'path';
|
|
|
|
import { defineConfig } from 'vite';
|
|
import dts from 'vite-plugin-dts';
|
|
|
|
import pkg from './package.json';
|
|
|
|
export default defineConfig({
|
|
plugins: [dts({ include: ['lib'], insertTypesEntry: true })],
|
|
build: {
|
|
copyPublicDir: false,
|
|
lib: {
|
|
entry: resolve(__dirname, 'lib/main.ts'),
|
|
fileName: (format) => `main.${format}.js`,
|
|
formats: ['es'],
|
|
name: 'pl-api',
|
|
},
|
|
target: 'esnext',
|
|
sourcemap: true,
|
|
rollupOptions: {
|
|
external: Object.keys(pkg.dependencies),
|
|
},
|
|
},
|
|
});
|