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.
1 parent ab826fa commit 81e4eeeCopy full SHA for 81e4eee
packages/config/src/tsup/config.js
@@ -1,6 +1,6 @@
1
const { defineConfig } = require('tsup')
2
3
-module.exports = defineConfig({
+module.exports = defineConfig(() => ({
4
entry: ['src/index.ts'],
5
format: ['esm', 'cjs'],
6
dts: {
@@ -9,4 +9,4 @@ module.exports = defineConfig({
9
},
10
outDir: 'dist',
11
clean: true,
12
-})
+}))
packages/page-tools/src/index.ts
@@ -7,4 +7,4 @@ export {
7
BufferedPageContext,
8
getDefaultPageContext,
isBufferedPageContext,
-} from './page-context.js'
+} from './page-context'
0 commit comments