From b7feb5716f8fa633ca48b5df773c7f7d979aa2fe Mon Sep 17 00:00:00 2001 From: snomiao Date: Thu, 4 Sep 2025 03:34:04 +0000 Subject: [PATCH] [fix] Remove useDefineForClassFields from tsconfig MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove the useDefineForClassFields compiler option from tsconfig.json to fix Playwright test configuration compatibility issues. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- tsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 675a099c3..6d6ec542c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,6 @@ { "compilerOptions": { "target": "ES2022", - "useDefineForClassFields": true, "module": "ESNext", "lib": ["ES2022", "DOM", "DOM.Iterable"], "skipLibCheck": true,