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 d89e9ae commit 6ec057cCopy full SHA for 6ec057c
packages/mcp-tools/tsup.config.ts
@@ -3,8 +3,9 @@ import { defineConfig } from 'tsup';
3
export default defineConfig({
4
entry: ['src/index.ts'],
5
format: ['esm'],
6
- dts: false,
7
- sourcemap: true,
+ dts: {
+ resolve: true,
8
+ },
9
clean: true,
10
shims: true,
11
});
tsconfig.base.json
@@ -1,8 +1,5 @@
1
{
2
"compilerOptions": {
- "composite": true,
- "declarationMap": true,
- "emitDeclarationOnly": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
0 commit comments