From 363bda26d00c325ff999e215217a9084d79cb69f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20=C5=A0vanda?= <46406259+Papooch@users.noreply.github.com> Date: Wed, 23 Oct 2024 12:18:26 +0200 Subject: [PATCH] build: enable declaration map --- .npmignore | 1 + tsconfig.json | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.npmignore b/.npmignore index 9739546e..4aba7e85 100644 --- a/.npmignore +++ b/.npmignore @@ -14,6 +14,7 @@ gqlschema.gql **/*.spec.d.ts **/*.spec.js **/*.js.map +**/*.d.ts.map .eslintrc.js .prettierrc diff --git a/tsconfig.json b/tsconfig.json index 2df7934f..10462a05 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,6 +3,7 @@ "module": "commonjs", "esModuleInterop": true, "declaration": true, + "declarationMap": true, "removeComments": false, "emitDecoratorMetadata": true, "experimentalDecorators": true, @@ -50,4 +51,4 @@ "path": "packages/transactional-adapters/transactional-adapter-typeorm" } ] -} \ No newline at end of file +}