mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-17 16:21:55 +03:00
a68201b491
TypeScript in v5 emits a warning and this ends up in exit code 1. See https://github.com/vuejs/tsconfig/issues/6 for more information. This CL will make TypeScript still end up in exit code 0 even tho these warnings are emitted until they fixed it upstream and released a new version of their config.
11 lines
213 B
JSON
11 lines
213 B
JSON
{
|
|
"extends": "./tsconfig.app.json",
|
|
"include": ["playwright", "env.d.ts", "src/**/*"],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"lib": [],
|
|
"types": ["node"],
|
|
"ignoreDeprecations": "5.0"
|
|
}
|
|
}
|