playwright/tests/tsconfig.json
Andrey Lushnikov 54157034ac
cherry-pick(#11662) fix(test runner): resolve tsconfig for each file (#11695)
This allows us to properly handle path mappings
that are not too ambiguous.

Co-authored-by: Dmitry Gozman <dgozman@gmail.com>
2022-01-27 12:02:59 -08:00

16 lines
432 B
JSON

{
"compilerOptions": {
"allowJs": true,
"checkJs": false,
"noEmit": true,
"moduleResolution": "node",
"target": "ESNext",
"strictNullChecks": false,
"strictBindCallApply": true,
"allowSyntheticDefaultImports": true,
"useUnknownInCatchVariables": false,
},
"include": ["**/*.spec.js", "**/*.ts", "index.d.ts"],
"exclude": ["playwright-test/"]
}