Skip to content

Commit 84e11ab

Browse files
committed
build with TypeScript latest
Puts a "use strict" in all code. Feels like a minor change at the least.
1 parent 6cf4047 commit 84e11ab

File tree

81 files changed

+81
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+81
-0
lines changed

dist/linter.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var parent = require('./worker/parent');
23
var fs = require('fs');
34
var atom_1 = require("atom");

dist/main/atom/atomConfig.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var utils_1 = require("../lang/utils");
23
var packageName = 'atom-typescript';
34
function getConfig(nameLambda) {

dist/main/atom/atomUtils.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var path = require('path');
23
var fs = require('fs');
34
var fsu = require("../utils/fsUtil");

dist/main/atom/autoCompleteProvider.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var parent = require('../../worker/parent');
23
var atomConfig = require('./atomConfig');
34
var fs = require('fs');

dist/main/atom/buildView.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var mainPanelView = require('./views/mainPanelView');
23
var lineMessageView = require('./views/lineMessageView');
34
var gotoHistory = require('./gotoHistory');

dist/main/atom/commands/commands.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
function __export(m) {
23
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
34
}

dist/main/atom/commands/json2dtsCommands.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var atomUtils = require("../atomUtils");
23
var json2dts_1 = require("../../json2dts/json2dts");
34
function registerJson2dtsCommands() {
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
function registerRenameHandling() {
23
}
34
exports.registerRenameHandling = registerRenameHandling;

dist/main/atom/commands/outputFileCommands.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var atomUtils = require("../atomUtils");
23
var parent = require("../../../worker/parent");
34
var child_process_1 = require("child_process");

dist/main/atom/commands/reactCommands.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var atomUtils = require("../atomUtils");
23
var htmltotsx_1 = require("../../react/htmltotsx");
34
function registerReactCommands() {

0 commit comments

Comments
 (0)