mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
14 lines
219 B
TypeScript
14 lines
219 B
TypeScript
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
build: {
|
|
sourcemap: false,
|
|
|
|
lib: {
|
|
entry: 'src/index.ts',
|
|
name: 'TMagicSchema',
|
|
fileName: 'tmagic-schema',
|
|
},
|
|
},
|
|
});
|