diff --git a/tsup.config.ts b/tsup.config.ts index d5d9b18..c2f0343 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -1,5 +1,9 @@ import { defineConfig } from 'tsup' export default defineConfig({ - entry: ['src', '!src/**/*.spec.*'], + entry: [ + 'src', + '!src/**/*.spec.*', + '!src/utils/create-and-authenticate-user.ts', + ], })