We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de9547c commit 593a099Copy full SHA for 593a099
src/compiler/emitter.ts
@@ -3300,7 +3300,7 @@ module ts {
3300
3301
// When targeting ES6, emit arrow function natively in ES6
3302
if (isES6ArrowFunction(node)) {
3303
- write(" => ");
+ write(" =>");
3304
}
3305
3306
write(" {");
src/harness/projectsRunner.ts
@@ -164,8 +164,7 @@ class ProjectRunner extends RunnerBase {
164
mapRoot: testCase.resolveMapRoot && testCase.mapRoot ? ts.sys.resolvePath(testCase.mapRoot) : testCase.mapRoot,
165
sourceRoot: testCase.resolveSourceRoot && testCase.sourceRoot ? ts.sys.resolvePath(testCase.sourceRoot) : testCase.sourceRoot,
166
module: moduleKind,
167
- noResolve: testCase.noResolve,
168
- target: ts.ScriptTarget.Latest
+ noResolve: testCase.noResolve
169
};
170
171
0 commit comments