2022-03-29 04:21:19 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ESNext",
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": false,
|
|
|
|
"esModuleInterop": false,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"useUnknownInCatchVariables": false,
|
|
|
|
"paths": {
|
2022-09-21 04:41:51 +03:00
|
|
|
"@protocol/*": ["../protocol/src/*"],
|
2022-03-29 04:21:19 +03:00
|
|
|
"@web/*": ["../web/src/*"],
|
|
|
|
"@playwright-test/*": ["../playwright-test/src/*"],
|
|
|
|
"playwright-core/lib/*": ["../playwright-core/src/*"],
|
|
|
|
"playwright-test/lib/*": ["../playwright-test/src/*"],
|
|
|
|
}
|
|
|
|
},
|
2022-05-06 22:02:07 +03:00
|
|
|
"include": ["src"],
|
2022-03-29 04:21:19 +03:00
|
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
|
|
}
|