playwright/tests/tsconfig.json

16 lines
432 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,
},
"include": ["**/*.spec.js", "**/*.ts", "index.d.ts"],
"exclude": ["playwright-test/"]
}