From 6a6f237860ae18d1f76c042583ffb42a003e1e1c Mon Sep 17 00:00:00 2001 From: phk422 <1769476785@qq.com> Date: Wed, 26 Jun 2024 10:07:58 +0800 Subject: [PATCH] chore: removed `sourceRoot` configuration from `tsconfig.json` to ensure proper source mapping during local debugging --- packages/openapi-typescript/tsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/openapi-typescript/tsconfig.json b/packages/openapi-typescript/tsconfig.json index d06562478..96c4e58bb 100644 --- a/packages/openapi-typescript/tsconfig.json +++ b/packages/openapi-typescript/tsconfig.json @@ -3,7 +3,6 @@ "compilerOptions": { "lib": ["ESNext", "DOM"], "skipLibCheck": true, - "sourceRoot": ".", "outDir": "dist", "types": ["vitest/globals"] },