From 0eb6854aae83dc8caed4363e4faa76ffdfb75962 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ad=C3=A1mek?= Date: Fri, 29 May 2026 10:07:20 +0200 Subject: [PATCH] chore: stop publishing broken declaration and source maps The published tarball excludes `src` but ships `.d.ts.map`/`.js.map` that reference `../src/*.ts`, so the maps never resolve and editors fall back to the compiled output. Disable `declarationMap`/`sourceMap` so these dead maps are no longer emitted. Co-Authored-By: Claude Opus 4.8 --- tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index d619dd1d..194b4f1e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,7 +5,9 @@ "module": "NodeNext", "moduleResolution": "NodeNext", "target": "ES2022", - "verbatimModuleSyntax": true + "verbatimModuleSyntax": true, + "declarationMap": false, + "sourceMap": false }, "include": ["src"] }