From b6fa97d4739ccd141371b32db49e72e02292254b Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Mon, 23 Sep 2024 13:33:37 +0200 Subject: [PATCH] Add declaration maps --- .gitignore | 1 + package.json | 1 + tsconfig.json | 1 + 3 files changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index cfac988..2c8fe83 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ coverage/ node_modules/ .DS_Store +*.d.ts.map *.d.ts *.log *.tsbuildinfo diff --git a/package.json b/package.json index fd37332..491ca36 100644 --- a/package.json +++ b/package.json @@ -45,6 +45,7 @@ "exports": "./index.js", "files": [ "lib/", + "index.d.ts.map", "index.d.ts", "index.js" ], 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,