mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 07:27:09 +08:00
10 lines
215 B
TypeScript
10 lines
215 B
TypeScript
import path from 'path';
|
|
|
|
import { defineConfig } from '@tmagic/cli';
|
|
|
|
export default defineConfig({
|
|
packages: [path.join(__dirname, '../../packages/ui')],
|
|
componentFileAffix: '.vue',
|
|
dynamicImport: true,
|
|
});
|