playwright/tests/tsconfig.json

20 lines
574 B
JSON
Raw Normal View History

{
"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,
"baseUrl": ".",
"paths": {
"@playwright-core/*": ["../packages/playwright-core/src/*"],
},
},
"include": ["**/*.spec.js", "**/*.ts", "index.d.ts"],
"exclude": ["playwright-test/", "components/"]
}