Files
hoppscotch/packages/hoppscotch-data/tsup.config.ts
liyasthomas ffd1acdfae chore: lint
2022-01-05 10:17:23 +05:30

17 lines
346 B
TypeScript

import { Options } from "tsup"
const options: Options = {
format: [
"cjs",
// loading Babel in ESM is tricky, since Babel itself it CJS only
// we decided to drop ESM support until Babel supports native ESM
// 'esm',
],
clean: true,
splitting: true,
dts: true,
entryPoints: ["src/**/*.ts"],
}
export default options