mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-04 06:03:10 +03:00
28 lines
744 B
JSON
28 lines
744 B
JSON
{
|
|
"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": {
|
|
"@isomorphic/*": ["../playwright-core/src/utils/isomorphic/*"],
|
|
"@protocol/*": ["../protocol/src/*"],
|
|
"@web/*": ["../web/src/*"],
|
|
}
|
|
},
|
|
"include": ["src"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|