mirror of
https://github.com/web-infra-dev/midscene.git
synced 2025-07-28 03:13:58 +00:00
14 lines
277 B
TypeScript
14 lines
277 B
TypeScript
![]() |
import { moduleTools, defineConfig } from '@modern-js/module-tools';
|
||
|
|
||
|
export default defineConfig({
|
||
|
plugins: [moduleTools()],
|
||
|
buildPreset: 'npm-library',
|
||
|
buildConfig: {
|
||
|
platform: 'node',
|
||
|
input: {
|
||
|
index: 'src/index.ts',
|
||
|
},
|
||
|
target: 'es2017',
|
||
|
},
|
||
|
});
|