From 1120df9ea0c03abb5095a103cb9a8cd107977185 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Mon, 27 May 2024 11:24:39 +0200 Subject: [PATCH] Add declaration maps --- .gitignore | 1 + tsconfig.json | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 949baae..d6e0a71 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ coverage/ node_modules/ /lib/ /index.js +*.d.ts.map *.d.ts *.log .DS_Store diff --git a/tsconfig.json b/tsconfig.json index e82ed5a..a829c53 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"],