node_modules/@crawlee/browser-pool/playwright/playwright-browser.d.ts:12:22 - error TS2420: Class 'PlaywrightBrowser' incorrectly implements interface 'Browser'. Property '[Symbol.asyncDispose]' is missing in type 'PlaywrightBrowser' but required in type 'Browser'. 12 export declare class PlaywrightBrowser extends EventEmitter implements Browser { ~~~~~~~~~~~~~~~~~ node_modules/playwright-core/types/types.d.ts:16581:3 16581 [Symbol.asyncDispose](): Promise<void>; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '[Symbol.asyncDispose]' is declared here.
tsconfig.json
{ "extends": "@apify/tsconfig", "compilerOptions": { "module": "ES2022", "target": "ES2022", "outDir": "dist", + "noUnusedLocals": false, + "noUnusedParameters": false, + "strict": false, "skipLibCheck": true, "lib": ["DOM"] }, "include": [ "./src/**/*" ] }