Skip to content

Commit f9f15b2

Browse files
authored
Set noEmitHelpers to avoid __extends()
TypeScript creates an `__extends` function which [breaks most of apps in {N}](NativeScript/nativescript-dev-webpack#8). A simple fix is settings to `noEmitHelpers` to true.
1 parent 28b8c3a commit f9f15b2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tsconfig.json

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"emitDecoratorMetadata": true,
77
"experimentalDecorators": true,
88
"sourceMap": true,
9+
"noEmitHelpers": true,
910
"moduleResolution": "node"
1011
},
1112
"files": [

0 commit comments

Comments
 (0)