AFFiNE/packages/y-indexeddb/vite.config.ts

26 lines
547 B
TypeScript
Raw Normal View History

2023-04-02 10:57:50 +03:00
import { resolve } from 'node:path';
import { fileURLToPath } from 'url';
import { defineConfig } from 'vite';
import dts from 'vite-plugin-dts';
const __dirname = fileURLToPath(new URL('.', import.meta.url));
export default defineConfig({
build: {
terserOptions: {
ecma: 2020,
},
sourcemap: true,
lib: {
entry: resolve(__dirname, 'src/index.ts'),
fileName: 'index',
2023-04-21 02:08:33 +03:00
name: 'ToEverythingIndexedDBProvider',
2023-04-02 10:57:50 +03:00
},
rollupOptions: {
2023-04-21 02:08:33 +03:00
external: ['idb', 'yjs'],
2023-04-02 10:57:50 +03:00
},
},
plugins: [dts()],
});