From 782a013ff2979cdfe893a0ec123da67567c8985c Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 20:55:43 +0000 Subject: [PATCH] fix: resolve CI working-directory issue --- tsconfig.json | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 17085d1..5fcd224 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,15 +3,18 @@ "target": "ES2020", "module": "commonjs", "lib": ["ES2020"], - "declaration": true, "outDir": "./dist", "rootDir": "./src", "strict": true, "esModuleInterop": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true, - "resolveJsonModule": true + "resolveJsonModule": true, + "declaration": true, + "declarationMap": true, + "sourceMap": true, + "moduleResolution": "node" }, "include": ["src/**/*"], - "exclude": ["node_modules", "dist"] -} + "exclude": ["node_modules", "dist", "tests"] +} \ No newline at end of file