mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-09-11 00:57:01 +08:00
10 lines
221 B
JavaScript
10 lines
221 B
JavaScript
import { defineConfig } from "tsup";
|
|
|
|
export default defineConfig((_options) => ({
|
|
entry: ["src/index.ts"],
|
|
splitting: false,
|
|
sourcemap: false,
|
|
clear: !_options.watch,
|
|
format: ["cjs", "esm"],
|
|
dts: false,
|
|
}));
|