27 lines
681 B
JSON
27 lines
681 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"baseUrl": ".",
|
|
"moduleResolution": "node",
|
|
"module": "ESNext",
|
|
"target": "es2022",
|
|
"types": [
|
|
"node",
|
|
"@wdio/globals/types",
|
|
"expect-webdriverio",
|
|
"@wdio/mocha-framework",
|
|
"@types/mocha"
|
|
],
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": ["."]
|
|
}
|