Skip to content

Commit 92b47d2

Browse files
authored
feat: bump typescript target to ES2017 (#729)
Sets the TypeScript compile target to ES2017 as ES2015 is now 8 years old. Furthermore, ES2017 targets do not transpile async/await to JS generators, which means that stack traces will now be readable.
1 parent 48f21e1 commit 92b47d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"outDir": "dist/main",
88
"rootDir": "src",
99
"sourceMap": true,
10-
"target": "ES2015",
10+
"target": "ES2017",
1111

1212
"strict": true,
1313

0 commit comments

Comments
 (0)