mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
17 lines
380 B
TypeScript
17 lines
380 B
TypeScript
import { defineConfig } from 'tsup';
|
|
import {
|
|
commonWatchList,
|
|
monorepoWatchList,
|
|
targetFromNodeVersion,
|
|
watchEntryPlugin,
|
|
} from './utils';
|
|
|
|
export default defineConfig({
|
|
splitting: false,
|
|
sourcemap: true,
|
|
clean: true,
|
|
format: 'esm',
|
|
watch: [...commonWatchList(), ...monorepoWatchList()],
|
|
target: targetFromNodeVersion(),
|
|
plugins: [watchEntryPlugin()],
|
|
});
|