chore: lint

This commit is contained in:
liyasthomas
2022-01-05 10:17:23 +05:30
parent dd7aebaf94
commit ffd1acdfae
10 changed files with 50 additions and 48 deletions

View File

@@ -1,8 +1,8 @@
import { Options } from 'tsup'
import { Options } from "tsup"
const options: Options = {
format: [
'cjs',
"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',
@@ -10,9 +10,7 @@ const options: Options = {
clean: true,
splitting: true,
dts: true,
entryPoints: [
'src/**/*.ts',
],
entryPoints: ["src/**/*.ts"],
}
export default options
export default options