Comparing version 0.0.10 to 0.0.11
@@ -55,3 +55,4 @@ /// <reference path='./typings/node.d.ts' /> | ||
target: 1 /* ES5 */, | ||
module: 1 /* CommonJS */ | ||
module: 1 /* CommonJS */, | ||
experimentalDecorators: true | ||
}); | ||
@@ -128,3 +129,4 @@ if (compileError) | ||
module: 1 /* CommonJS */, | ||
target: 1 /* ES5 */ | ||
target: 1 /* ES5 */, | ||
experimentalDecorators: true | ||
}); }, | ||
@@ -131,0 +133,0 @@ getScriptFileNames: function () { return [dummyFile]; }, |
{ | ||
"name": "tsun", | ||
"version": "0.0.10", | ||
"version": "0.0.11", | ||
"description": "TSUN: a repl for TypeScript Upgraded Node", | ||
@@ -5,0 +5,0 @@ "bin": "./bin/tsun", |
@@ -65,2 +65,3 @@ /// <reference path='./typings/node.d.ts' /> | ||
module: ts.ModuleKind.CommonJS, | ||
experimentalDecorators: true, | ||
}) | ||
@@ -143,3 +144,4 @@ if (compileError) process.exit(compileError) | ||
module: ts.ModuleKind.CommonJS, | ||
target: ts.ScriptTarget.ES5 | ||
target: ts.ScriptTarget.ES5, | ||
experimentalDecorators: true | ||
}), | ||
@@ -146,0 +148,0 @@ getScriptFileNames: () => [dummyFile], |
278552
2352