midscene/packages/visualizer/modern.config.ts
yuyutaotao f8507efd50
chore: some minor bug fixes (#146)
* feat: always use latest process.env as fallback

---------

Co-authored-by: zhouxiao.shaw <zhouxiao.shaw@bytedance.com>
2024-11-07 11:29:50 +08:00

72 lines
1.6 KiB
TypeScript

import path from 'node:path';
import { defineConfig, moduleTools } from '@modern-js/module-tools';
import { modulePluginNodePolyfill } from '@modern-js/plugin-module-node-polyfill';
import { version } from './package.json';
const externals = ['playwright', 'langsmith'];
const commonConfig = {
asset: {
svgr: true,
},
autoExternal: false,
externals: [...externals],
target: 'es2018',
minify: process.env.CI
? {
compress: true,
}
: undefined,
define: {
__VERSION__: JSON.stringify(version),
global: 'globalThis',
},
};
export default defineConfig({
buildConfig: [
{
...commonConfig,
alias: {
async_hooks: path.join(__dirname, './src/blank_polyfill.ts'),
},
format: 'umd',
dts: false,
input: {
report: 'src/index.tsx',
},
umdModuleName: (path) => {
// if (path.includes('playground')) {
// return 'midscenePlayground';
// }
return 'midsceneVisualizer';
},
platform: 'browser',
outDir: 'dist',
target: 'es2018',
},
{
...commonConfig,
alias: {
async_hooks: path.join(__dirname, './src/blank_polyfill.ts'),
},
format: 'iife',
dts: false,
input: {
popup: 'src/extension/popup.tsx',
worker: 'src/extension/worker.ts',
'playground-entry': 'src/extension/playground-entry.tsx',
},
platform: 'browser',
outDir: 'unpacked-extension/lib',
target: 'es2018',
},
],
plugins: [
moduleTools(),
modulePluginNodePolyfill({
excludes: ['console'],
}),
],
buildPreset: 'npm-component',
});