2021-04-03 06:07:45 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"checkJs": false,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"target": "ESNext",
|
|
|
|
|
"strictNullChecks": false,
|
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2021-10-11 16:52:17 +02:00
|
|
|
"useUnknownInCatchVariables": false,
|
2022-03-25 22:12:00 +01:00
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@playwright-core/*": ["../packages/playwright-core/src/*"],
|
|
|
|
|
},
|
2021-04-03 06:07:45 +02:00
|
|
|
},
|
2021-10-08 17:01:31 +02:00
|
|
|
"include": ["**/*.spec.js", "**/*.ts", "index.d.ts"],
|
2022-03-26 07:09:02 +01:00
|
|
|
"exclude": ["playwright-test/", "components/"]
|
2021-04-03 06:07:45 +02:00
|
|
|
}
|