AFFiNE/packages/infra/vite.config.ts

25 lines
478 B
TypeScript
Raw Normal View History

2023-06-08 04:41:20 +03:00
import { resolve } from 'node:path';
import { fileURLToPath } from 'url';
import dts from 'vite-plugin-dts';
import { defineConfig } from 'vitest/config';
const root = fileURLToPath(new URL('.', import.meta.url));
export default defineConfig({
build: {
lib: {
entry: {
index: resolve(root, 'src/index.ts'),
},
formats: ['es', 'cjs'],
name: 'AffineInfra',
},
},
plugins: [
dts({
insertTypesEntry: true,
}),
],
});