style: cleanup tests and tsup configs

This commit is contained in:
iCrawl
2022-06-04 15:21:57 +02:00
parent a45bef4cad
commit 6b8ef20cb3
26 changed files with 310 additions and 306 deletions

View File

@@ -1,6 +1,6 @@
import type { Options } from 'tsup';
import { defineConfig } from 'tsup';
export const tsup: Options = {
export default defineConfig({
clean: true,
dts: false,
entryPoints: ['src/index.ts'],
@@ -17,4 +17,4 @@ export const tsup: Options = {
};
}
},
};
});