From c41ff44708fb23e4c988b47f031771f6db1c5a9e Mon Sep 17 00:00:00 2001 From: hyper Date: Tue, 31 Mar 2026 13:55:11 +0800 Subject: [PATCH] fix: build issue --- tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index c9b40c1..e581e86 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,7 @@ "target": "ES2020", "module": "ESNext", "lib": ["ES2020"], - "moduleResolution": "node", + "moduleResolution": "bundler", "esModuleInterop": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true, @@ -12,7 +12,8 @@ "declarationMap": true, "sourceMap": true, "outDir": "./dist", - "rootDir": "./src" + "rootDir": "./src", + "ignoreDeprecations": "6.0" }, "include": ["src/**/*"], "exclude": ["node_modules", "dist", "src/csv-loader"]