We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03df73e commit ce9d747Copy full SHA for ce9d747
tests/tsconfig.json
@@ -1,11 +1,15 @@
1
{
2
"compilerOptions": {
3
- "moduleResolution": "node",
4
- "module": "ESNext",
5
- "target": "es2022",
+ // This implicitly sets moduleResolution to "node16"
+ // https://www.typescriptlang.org/docs/handbook/modules/theory.html#module-resolution-is-host-defined
+ "module": "Node18",
6
+ "target": "ES2024",
7
"lib": [
- "es2022",
8
- "dom"
+ // https://www.typescriptlang.org/tsconfig/#lib
9
+ // include APIs that are enabled by ES2024
10
+ "ES2024",
11
+ // DOM definitions, window, document, etc.
12
+ "DOM"
13
],
14
"types": [
15
"node",
@@ -24,7 +28,7 @@
24
28
"noFallthroughCasesInSwitch": true
25
29
},
26
30
"include": [
27
- "test",
31
+ "src/**/*.ts",
32
"wdio.conf.ts"
33
]
34
}
0 commit comments