From 9123afc14e2360926adfa96e4cfe17933e47ae7f Mon Sep 17 00:00:00 2001 From: Claude Owner Date: Tue, 26 May 2026 14:39:07 +0900 Subject: [PATCH] chore(ts): make tsconfig compatible with TypeScript 6 - Add rootDir: ./src so tsc no longer errors with TS5011 demanding it be set explicitly alongside outDir. - Add ignoreDeprecations: 6.0 to silence the TS5101 baseUrl deprecation warning until baseUrl is removed in TS 7. --- tsconfig.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 9eea761..a37a5f2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,9 @@ "target": "esnext", "module": "commonjs", "baseUrl": "./src", + "rootDir": "./src", "outDir": "./dist", + "ignoreDeprecations": "6.0", "removeComments": true, "esModuleInterop": true, "forceConsistentCasingInFileNames": true,