mirror of
https://github.com/web-infra-dev/midscene.git
synced 2025-07-06 16:41:38 +00:00
16 lines
304 B
TypeScript
16 lines
304 B
TypeScript
![]() |
import { defineConfig, moduleTools } from '@modern-js/module-tools';
|
||
|
|
||
|
export default defineConfig({
|
||
|
plugins: [moduleTools()],
|
||
|
buildPreset: 'npm-library',
|
||
|
buildConfig: {
|
||
|
input: {
|
||
|
index: './src/index.ts',
|
||
|
},
|
||
|
target: 'es2020',
|
||
|
dts: {
|
||
|
respectExternal: true,
|
||
|
},
|
||
|
},
|
||
|
});
|