Skip to content

Commit 44b4ea8

Browse files
committed
Switches to ES2020 due to matchAll
1 parent 2050264 commit 44b4ea8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"compilerOptions": {
33
"module": "commonjs",
4-
"target": "es6",
4+
"target": "ES2020",
55
"outDir": "out",
6-
"lib": ["es6"],
6+
"lib": ["ES2020"],
77
"sourceMap": true,
88
"rootDir": ".",
99
"resolveJsonModule": true

tsconfig.prod.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"compilerOptions": {
33
"module": "commonjs",
4-
"target": "es6",
4+
"target": "ES2020",
55
"outDir": "out",
6-
"lib": ["es6"],
6+
"lib": ["ES2020"],
77
"sourceMap": false,
88
"removeComments": true,
99
"rootDir": ".",

tsconfig.test.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"compilerOptions": {
33
"module": "commonjs",
4-
"target": "es6",
4+
"target": "ES2020",
55
"outDir": "out",
6-
"lib": ["es6"],
6+
"lib": ["ES2020"],
77
"sourceMap": true,
88
"rootDir": ".",
99
"resolveJsonModule": true

0 commit comments

Comments
 (0)