From 8f29f1e45653848a567e94f179f5a249524ed342 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Wed, 22 Jan 2025 16:02:33 +0100 Subject: [PATCH] Add declaration maps --- .gitignore | 1 + tsconfig.json | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index b976b9c..388388c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ *.d.ts *.log +*.map *.tsbuildinfo .DS_Store coverage/ diff --git a/tsconfig.json b/tsconfig.json index 82cc749..fc3d1e4 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,6 +2,7 @@ "compilerOptions": { "checkJs": true, "customConditions": ["development"], + "declarationMap": true, "declaration": true, "emitDeclarationOnly": true, "exactOptionalPropertyTypes": true,