From 34ceb6b0b7730f138943d00b03ad9ca3ac499278 Mon Sep 17 00:00:00 2001
From: Titus Wormer <tituswormer@gmail.com>
Date: Tue, 1 Oct 2024 11:32:30 +0200
Subject: [PATCH] Add declaration maps

---
 .gitignore    | 1 +
 tsconfig.json | 1 +
 2 files changed, 2 insertions(+)

diff --git a/.gitignore b/.gitignore
index 998aefb..2cc2f9e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,7 @@ coverage/
 node_modules/
 *.d.ts
 *.log
+*.map
 *.tsbuildinfo
 .DS_Store
 yarn.lock
diff --git a/tsconfig.json b/tsconfig.json
index 2753f0c..18004d2 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -2,6 +2,7 @@
   "compilerOptions": {
     "checkJs": true,
     "customConditions": ["development"],
+    "declarationMap": true,
     "declaration": true,
     "emitDeclarationOnly": true,
     "exactOptionalPropertyTypes": true,