2021-04-03 07:07:45 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
|
|
|
"checkJs": false,
|
|
|
|
"noEmit": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"target": "ESNext",
|
|
|
|
"strictNullChecks": false,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2021-10-11 17:52:17 +03:00
|
|
|
"useUnknownInCatchVariables": false,
|
2022-09-21 04:41:51 +03:00
|
|
|
"baseUrl": "..",
|
2022-03-26 00:12:00 +03:00
|
|
|
"paths": {
|
2023-05-06 01:12:18 +03:00
|
|
|
"@isomorphic/*": ["packages/playwright-core/src/utils/isomorphic/*"],
|
2022-09-21 04:41:51 +03:00
|
|
|
"@protocol/*": ["packages/protocol/src/*"],
|
|
|
|
"@recorder/*": ["packages/recorder/src/*"],
|
|
|
|
"@trace/*": ["packages/trace/src/*"],
|
|
|
|
"@web/*": ["packages/web/src/*"],
|
2022-03-26 00:12:00 +03:00
|
|
|
},
|
2021-04-03 07:07:45 +03:00
|
|
|
},
|
2021-10-08 18:01:31 +03:00
|
|
|
"include": ["**/*.spec.js", "**/*.ts", "index.d.ts"],
|
2023-09-29 03:18:22 +03:00
|
|
|
"exclude": ["components/", "installation/fixture-scripts/"]
|
2021-04-03 07:07:45 +03:00
|
|
|
}
|