26 строки
576 B
JSON
26 строки
576 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2019",
|
|
"module": "commonjs",
|
|
"lib": ["esnext", "dom", "DOM.Iterable"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"*": ["./packages/*/"],
|
|
"playwright-core/lib/*": ["./packages/playwright-core/src/*"]
|
|
},
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"jsx": "react",
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
"noImplicitOverride": true,
|
|
"useUnknownInCatchVariables": false,
|
|
},
|
|
"compileOnSave": true,
|
|
"include": ["packages"],
|
|
"exclude": [
|
|
"packages/*/lib",
|
|
],
|
|
}
|