diff --git a/example.ts b/example.ts index a201bd7..39b02f8 100644 --- a/example.ts +++ b/example.ts @@ -1 +1,7 @@ -console.log('Some .ts code reproducing a bug'); +const repl = require("repl"); + +const foo = "bar"; + +const replServer = repl.start(); + +replServer.context.foo = foo;