You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(kernel): Return object literals as references (#249)
Use the javascript `Proxy` class to coalesce object literals to an
interface type, allowing them to be returned by reference instead of by
value.
Introduces a test in the `jsii-kernel` to demonstrate the feature works
as intended.
Fixes#248Fixesaws/aws-cdk#774
Copy file name to clipboardexpand all lines: packages/jsii-kernel/tsconfig.json
+2-2
Original file line number
Diff line number
Diff line change
@@ -44,8 +44,8 @@
44
44
/* Source Map Options */
45
45
// "sourceRoot": "./", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
46
46
// "mapRoot": "./", /* Specify the location where debugger should locate map files instead of generated locations. */
47
-
//"inlineSourceMap": false, /* Emit a single file with source maps instead of having a separate file. */
48
-
//"inlineSources": false, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
47
+
"inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
48
+
"inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
49
49
50
50
/* Experimental Options */
51
51
"experimentalDecorators": true/* Enables experimental support for ES7 decorators. */
0 commit comments