refactor: separate out data structures into hoppscotch-data

This commit is contained in:
Andrew Bastin
2021-11-24 01:20:07 +05:30
parent 2884854aab
commit 38755bf3e3
47 changed files with 820 additions and 74 deletions

View File

@@ -0,0 +1,18 @@
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