playwright/tsconfig.json

23 lines
497 B
JSON
Raw Normal View History

2019-11-19 03:18:28 +01:00
{
"compilerOptions": {
"target": "ES2019",
2019-11-19 03:18:28 +01:00
"module": "commonjs",
"lib": ["esnext", "dom", "DOM.Iterable"],
2021-10-11 16:52:17 +02:00
"baseUrl": ".",
"paths": {
"*": ["./packages/*/"]
},
"esModuleInterop": true,
"strict": true,
"allowJs": true,
2021-02-13 03:53:46 +01:00
"jsx": "react",
"resolveJsonModule": true,
"noEmit": true,
"noImplicitOverride": true,
"useUnknownInCatchVariables": false,
2019-11-19 03:18:28 +01:00
},
"compileOnSave": true,
2021-10-11 16:52:17 +02:00
"include": ["packages"],
"exclude": ["packages/*/lib"]
2019-11-19 03:18:28 +01:00
}