playwright/packages/recorder/tsconfig.json

29 lines
804 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": true,
"skipLibCheck": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"module": "ESNext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"baseUrl": ".",
"useUnknownInCatchVariables": false,
"paths": {
"@isomorphic/*": ["../playwright-core/src/utils/isomorphic/*"],
"@protocol/*": ["../protocol/src/*"],
"@recorder/*": ["../recorder/src/*"],
"@web/*": ["../web/src/*"],
}
},
2025-02-07 04:48:27 +01:00
"include": ["src", "../web/src"],
"references": [{ "path": "./tsconfig.node.json" }]
}