2024-12-04 10:06:58 +01:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2025-05-07 09:22:16 +02:00
|
|
|
// This implicitly sets moduleResolution to "node16"
|
|
|
|
|
// https://www.typescriptlang.org/docs/handbook/modules/theory.html#module-resolution-is-host-defined
|
|
|
|
|
"module": "Node18",
|
|
|
|
|
"target": "ES2024",
|
2024-12-04 10:06:58 +01:00
|
|
|
"lib": [
|
2025-05-07 09:22:16 +02:00
|
|
|
// https://www.typescriptlang.org/tsconfig/#lib
|
|
|
|
|
// include APIs that are enabled by ES2024
|
|
|
|
|
"ES2024",
|
|
|
|
|
// DOM definitions, window, document, etc.
|
|
|
|
|
"DOM"
|
2024-12-04 10:06:58 +01:00
|
|
|
],
|
|
|
|
|
"types": [
|
|
|
|
|
"node",
|
|
|
|
|
"@wdio/globals/types",
|
|
|
|
|
"expect-webdriverio",
|
|
|
|
|
"@wdio/mocha-framework"
|
|
|
|
|
],
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true
|
|
|
|
|
},
|
|
|
|
|
"include": [
|
2025-05-07 09:22:16 +02:00
|
|
|
"src/**/*.ts",
|
2024-12-04 10:06:58 +01:00
|
|
|
"wdio.conf.ts"
|
|
|
|
|
]
|
|
|
|
|
}
|