From 27ae7789ef2abce28c4fec2a185d190f06bd8562 Mon Sep 17 00:00:00 2001 From: Alexander Zinn Date: Tue, 19 Aug 2025 12:30:19 -0400 Subject: [PATCH] chore: update tsconfig.json to enable declaration generation and specify output directories --- tsconfig.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index d4bdce4..9ef9612 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,7 +12,12 @@ "moduleResolution": "bundler", "allowImportingTsExtensions": true, "verbatimModuleSyntax": true, - "noEmit": true, + "emitDeclarationOnly": true, + "declaration": true, + "declarationDir": "./dist/types", + "outDir": "./dist/node", + "rootDir": "./src", + "declarationMap": true, // Best practices "strict": true,