Skip to content

Commit

Permalink
feat(tsconfig): add es2021.string to lib (replaceAll support) (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
nsbarsukov authored Feb 19, 2024
1 parent 22102e8 commit 6608b3f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion projects/tsconfig/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,15 @@
"outDir": "./dist",
"target": "ES2017",
"module": "ES2020",
"lib": ["es2017", "es2018.asynciterable", "es2018.promise", "es2019.object", "es2019.string", "dom"],
"lib": [
"es2017",
"es2018.asynciterable",
"es2018.promise",
"es2019.object",
"es2019.string",
"es2021.string",
"dom"
],
"typeRoots": ["node_modules/@types"],
"types": ["node"],
"skipLibCheck": true,
Expand Down

0 comments on commit 6608b3f

Please sign in to comment.