From bd4febe6f3a502d14393d72e5ae4653f0028d71e Mon Sep 17 00:00:00 2001 From: "Rodney, Tiara" Date: Fri, 25 Apr 2025 17:50:00 +0200 Subject: [PATCH] chore: redefine tsc config --- tsconfig.debug.json | 2 ++ tsconfig.json | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/tsconfig.debug.json b/tsconfig.debug.json index 100e932..904a958 100644 --- a/tsconfig.debug.json +++ b/tsconfig.debug.json @@ -2,6 +2,8 @@ "extends": "./tsconfig.json", "compilerOptions": { "sourceMap": true, + "declarationMap": true, + "declaration": true, "noEmit": false, "incremental": true, "outDir": "build/debug" diff --git a/tsconfig.json b/tsconfig.json index 4cd6541..700b8f0 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,14 +1,14 @@ { "compilerOptions": { "target": "es2015", - "module": "commonjs", + "module": "nodenext", "strict": true, "sourceMap": false, "esModuleInterop": true, "resolveJsonModule": false, "allowJs": false, - "declaration": true, - "declarationMap": true, + "declaration": false, + "declarationMap": false, "outDir": "build/release", "baseUrl": "./", "paths": { "*": ["node/modules/*"] },