Skip to content

Commit

Permalink
fix version number for TS v5
Browse files Browse the repository at this point in the history
  • Loading branch information
yaacovCR committed Aug 14, 2023
1 parent 60b5b82 commit 23fc202
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions integrationTests/ts/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
{
"compilerOptions": {
"module": "commonjs",
"lib": ["es2019", "es2020.promise", "es2020.bigint", "es2020.string"],
"lib": [
"es2019",
"es2020.promise",
"es2020.bigint",
"es2020.string",
"dom" // Workaround for missing web-compatible globals in `@types/node`
],
"noEmit": true,
"types": [],
"strict": true,
"exactOptionalPropertyTypes": true
}
}
}

0 comments on commit 23fc202

Please sign in to comment.