From 7dd0317b458fee38c0dec956c539f05737c42327 Mon Sep 17 00:00:00 2001 From: splincode Date: Tue, 17 Oct 2023 11:49:55 +0300 Subject: [PATCH] fix(tsconfig): ignore declaration --- projects/tsconfig/tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/tsconfig/tsconfig.json b/projects/tsconfig/tsconfig.json index f0d90aed..7dfbba26 100644 --- a/projects/tsconfig/tsconfig.json +++ b/projects/tsconfig/tsconfig.json @@ -33,8 +33,8 @@ "skipLibCheck": true, "downlevelIteration": true, "skipDefaultLibCheck": true, - "declaration": true, - "declarationMap": true, + "declaration": false, + "declarationMap": false, "moduleResolution": "node", "experimentalDecorators": true, "resolveJsonModule": true,