From 3b8903bd93e5a7aa69592ab968142648eb3e8826 Mon Sep 17 00:00:00 2001 From: Alessandro Manfredi Date: Wed, 2 Oct 2024 15:32:05 +0200 Subject: [PATCH] chore(common): adds declaration and emitDeclarationOnly within tsconfig.json --- packages/common/tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/common/tsconfig.json b/packages/common/tsconfig.json index b102f033..6418d61d 100644 --- a/packages/common/tsconfig.json +++ b/packages/common/tsconfig.json @@ -1,6 +1,8 @@ { "extends": "@tsconfig/node22/tsconfig.json", "compilerOptions": { - "outDir": "./dist" + "outDir": "./dist", + "declaration": true, + "emitDeclarationOnly": false } } \ No newline at end of file