From 0164f8db9129ec0020e9c5e7046eb7ab3ccffaa5 Mon Sep 17 00:00:00 2001 From: Lilith Date: Thu, 12 Feb 2026 19:53:27 -0800 Subject: [PATCH] =?UTF-8?q?chore(typescript):=20=F0=9F=94=A7=20Update=20Ty?= =?UTF-8?q?peScript=20config=20files=20(base.json,=20production.json)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- typescript/base.json | 2 +- typescript/production.json | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 typescript/production.json diff --git a/typescript/base.json b/typescript/base.json index 078dced..b2b9150 100644 --- a/typescript/base.json +++ b/typescript/base.json @@ -28,7 +28,7 @@ "declaration": true, "declarationMap": true, - "sourceMap": false, + "sourceMap": true, "esModuleInterop": true, "skipLibCheck": true, diff --git a/typescript/production.json b/typescript/production.json new file mode 100644 index 0000000..71fa10c --- /dev/null +++ b/typescript/production.json @@ -0,0 +1,9 @@ +{ + "$schema": "https://json.schemastore.org/tsconfig", + "display": "@lilith/configs - Production Overrides", + "_description": "Extend alongside any base config to disable source maps in production builds. Usage: { \"extends\": [\"./react.json\", \"./production.json\"] }", + "compilerOptions": { + "sourceMap": false, + "declarationMap": false + } +}