playwright/tsconfig.json
2021-10-11 16:52:17 +02:00

23 lines
497 B
JSON

{
"compilerOptions": {
"target": "ES2019",
"module": "commonjs",
"lib": ["esnext", "dom", "DOM.Iterable"],
"baseUrl": ".",
"paths": {
"*": ["./packages/*/"]
},
"esModuleInterop": true,
"strict": true,
"allowJs": true,
"jsx": "react",
"resolveJsonModule": true,
"noEmit": true,
"noImplicitOverride": true,
"useUnknownInCatchVariables": false,
},
"compileOnSave": true,
"include": ["packages"],
"exclude": ["packages/*/lib"]
}