Skip to content

Commit 23fc202

Browse files
committed
fix version number for TS v5
1 parent 60b5b82 commit 23fc202

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

integrationTests/ts/tsconfig.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
{
22
"compilerOptions": {
33
"module": "commonjs",
4-
"lib": ["es2019", "es2020.promise", "es2020.bigint", "es2020.string"],
4+
"lib": [
5+
"es2019",
6+
"es2020.promise",
7+
"es2020.bigint",
8+
"es2020.string",
9+
"dom" // Workaround for missing web-compatible globals in `@types/node`
10+
],
511
"noEmit": true,
612
"types": [],
713
"strict": true,
814
"exactOptionalPropertyTypes": true
915
}
10-
}
16+
}

0 commit comments

Comments
 (0)