We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
tsup.config.ts
1 parent 7e224bd commit e92072aCopy full SHA for e92072a
tsup.config.ts
@@ -3,7 +3,7 @@ import { defineConfig } from 'tsup'
3
4
const tsconfig = 'tsconfig.build.json' satisfies Options['tsconfig']
5
6
-export default defineConfig(options => {
+export default defineConfig((options): Options[] => {
7
const commonOptions: Options = {
8
entry: {
9
reselect: 'src/index.ts'
@@ -53,5 +53,5 @@ export default defineConfig(options => {
53
outDir: './dist/cjs/',
54
outExtension: () => ({ js: '.cjs' })
55
}
56
- ] as Options[]
+ ]
57
})
0 commit comments