Skip to content

Commit d55f87b

Browse files
committed
Project: Fixed regex capturing groups warning
``` Named capturing groups are only available when targeting 'ES2018' or later. ts(1503) ```
1 parent 16cd90e commit d55f87b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"inlineSourceMap": true,
55
"inlineSources": true,
66
"module": "ESNext",
7-
"target": "ES6",
7+
"target": "ES2018",
88
"allowJs": true,
99
"noImplicitAny": true,
1010
"moduleResolution": "node",

0 commit comments

Comments
 (0)