From 3ba85d28df5b9553baa52afaf7783dab9b2d30d2 Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Mon, 10 Feb 2025 14:38:32 +0800 Subject: [PATCH] fix: disable declaration emission To fix the type error in eslint.config.ts. https://github.com/typescript-eslint/typescript-eslint/issues/10508#issuecomment-2548148870 It's not necessary in our project anyway. --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index afc6ebf..f5c0b81 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,7 +7,7 @@ "moduleResolution": "NodeNext", "allowImportingTsExtensions": true, "strict": true, - "declaration": true, + "declaration": false, "noImplicitOverride": true, "noUnusedLocals": true, "esModuleInterop": true,