chore: fix Cannot find module '@testIsomorphic/types' in recorder (#36414)

This commit is contained in:
Max Schmitt 2025-06-23 22:52:21 +02:00 committed by GitHub
parent b1a1e11ad8
commit 896cb8536e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View File

@ -20,6 +20,7 @@
"@isomorphic/*": ["../playwright-core/src/utils/isomorphic/*"], "@isomorphic/*": ["../playwright-core/src/utils/isomorphic/*"],
"@protocol/*": ["../protocol/src/*"], "@protocol/*": ["../protocol/src/*"],
"@recorder/*": ["../recorder/src/*"], "@recorder/*": ["../recorder/src/*"],
"@testIsomorphic/*": ["../playwright/src/isomorphic/*"],
"@web/*": ["../web/src/*"], "@web/*": ["../web/src/*"],
} }
}, },

View File

@ -2,7 +2,8 @@
"compilerOptions": { "compilerOptions": {
"composite": true, "composite": true,
"module": "esnext", "module": "esnext",
"moduleResolution": "node" "moduleResolution": "node",
"allowSyntheticDefaultImports": true
}, },
"include": ["vite.config.ts"] "include": ["vite.config.ts"]
} }