From ab5968d79871635fb69ee0c3fa412a3d6bfcc512 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Thu, 22 Aug 2024 13:18:39 +0200 Subject: [PATCH] Add declaration maps --- .gitignore | 1 + tsconfig.json | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index d3bb35c..9810ec0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .DS_Store +*.d.ts.map *.d.ts *.log coverage/ diff --git a/tsconfig.json b/tsconfig.json index c65c200..0fac7b4 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,6 +3,7 @@ "checkJs": true, "customConditions": ["development"], "declaration": true, + "declarationMap": true, "emitDeclarationOnly": true, "exactOptionalPropertyTypes": true, "lib": ["es2022"],