Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"compilerOptions": {
"importHelpers": true,

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

importHelpers makes typescript require __extends helper from tslib instead of inlining it to every class declaration

"lib": [
"dom",
"es5",
"es2015",
"es2015.promise"
],
"module": "commonjs",
"module": "ESNext",

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

esnext module output enables webpack module concatenation which remove a lot of webpack boilerplate code

"moduleResolution": "node",
"target": "es5",
"sourceMap": true,
Expand Down