We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a325a5 commit 64bf9bbCopy full SHA for 64bf9bb
1 file changed
…kages/react-use-intercom/tsup.config.cjs …ckages/react-use-intercom/tsup.config.tspackages/react-use-intercom/tsup.config.cjs renamed to packages/react-use-intercom/tsup.config.ts
@@ -1,6 +1,6 @@
1
-const { defineConfig } = require('tsup');
+import type { Options } from 'tsup';
2
3
-module.exports = defineConfig({
+export const tsup: Options = {
4
entry: ['src/index.ts'],
5
format: ['esm', 'cjs'],
6
external: ['react'],
@@ -11,4 +11,4 @@ module.exports = defineConfig({
11
dts: true,
12
minify: true,
13
target: 'es2017',
14
-});
+};
0 commit comments