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() {

dist/main/atom/components/componentRegistry.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/components/ts-view.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var __extends = (this && this.__extends) || function (d, b) {
23
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
34
function __() { this.constructor = d; }

dist/main/atom/debugAtomTs.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var atomConfig = require('./atomConfig');
23
function runDebugCode(details) {
34
if (!atomConfig.debugAtomTs)

dist/main/atom/editorSetup.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 parent = require("../../worker/parent");
34
var atomUtils = require("./atomUtils");

dist/main/atom/fileStatusCache.js

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

dist/main/atom/gotoHistory.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
exports.errorsInOpenFiles = { members: [] };
23
exports.buildOutput = { members: [] };
34
exports.referencesOutput = { members: [] };

dist/main/atom/onSaveHandler.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 mainPanelView_1 = require("./views/mainPanelView");

dist/main/atom/signatureProvider.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
function requestHandler(config) {
23
}
34
exports.requestHandler = requestHandler;

dist/main/atom/tooltipManager.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 path = require('path');

dist/main/atom/typescriptGrammar.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var __extends = (this && this.__extends) || function (d, b) {
23
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
34
function __() { this.constructor = d; }

dist/main/atom/views/astView.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var __extends = (this && this.__extends) || function (d, b) {
23
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
34
function __() { this.constructor = d; }

dist/main/atom/views/awesomePanelView.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var __extends = (this && this.__extends) || function (d, b) {
23
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
34
function __() { this.constructor = d; }

dist/main/atom/views/contextView.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var __extends = (this && this.__extends) || function (d, b) {
23
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
34
function __() { this.constructor = d; }

dist/main/atom/views/dependencyView.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var __extends = (this && this.__extends) || function (d, b) {
23
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
34
function __() { this.constructor = d; }

dist/main/atom/views/documentationView.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var __extends = (this && this.__extends) || function (d, b) {
23
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
34
function __() { this.constructor = d; }

dist/main/atom/views/fileSymbolsView.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var __extends = (this && this.__extends) || function (d, b) {
23
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
34
function __() { this.constructor = d; }

dist/main/atom/views/lineMessageView.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var __extends = (this && this.__extends) || function (d, b) {
23
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
34
function __() { this.constructor = d; }

dist/main/atom/views/mainPanelView.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var __extends = (this && this.__extends) || function (d, b) {
23
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
34
function __() { this.constructor = d; }

dist/main/atom/views/plainMessageView.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var __extends = (this && this.__extends) || function (d, b) {
23
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
34
function __() { this.constructor = d; }

dist/main/atom/views/projectSymbolsView.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var __extends = (this && this.__extends) || function (d, b) {
23
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
34
function __() { this.constructor = d; }

dist/main/atom/views/rView.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var __extends = (this && this.__extends) || function (d, b) {
23
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
34
function __() { this.constructor = d; }

dist/main/atom/views/renameView.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var __extends = (this && this.__extends) || function (d, b) {
23
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
34
function __() { this.constructor = d; }

dist/main/atom/views/semanticView.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var __extends = (this && this.__extends) || function (d, b) {
23
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
34
function __() { this.constructor = d; }

dist/main/atom/views/simpleOverlaySelectionView.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var __extends = (this && this.__extends) || function (d, b) {
23
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
34
function __() { this.constructor = d; }

dist/main/atom/views/simpleSelectionView.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var __extends = (this && this.__extends) || function (d, b) {
23
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
34
function __() { this.constructor = d; }

dist/main/atom/views/tooltipView.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var __extends = (this && this.__extends) || function (d, b) {
23
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
34
function __() { this.constructor = d; }

dist/main/atom/views/view.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var __extends = (this && this.__extends) || function (d, b) {
23
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
34
function __() { this.constructor = d; }

dist/main/atomts.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var atomConfig = require('./atom/atomConfig');
23
var makeTypeScriptGlobal_1 = require("../typescript/makeTypeScriptGlobal");
34
makeTypeScriptGlobal_1.makeTsGlobal(atomConfig.typescriptServices);

dist/main/bin/atbuild.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var makeTypeScriptGlobal_1 = require("../../typescript/makeTypeScriptGlobal");
23
makeTypeScriptGlobal_1.makeTsGlobal();
34
var tsconfig = require("../tsconfig/tsconfig");

dist/main/json2dts/json2dts.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var JSON2DTS = require("json2dts");
23
var Json2dts = JSON2DTS.Json2dts;
34
var toValidJSON = JSON2DTS.toValidJSON;

dist/main/lang/core/languageServiceHost2.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 textBuffer = require('basarat-text-buffer');

dist/main/lang/core/project.js

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

dist/main/lang/fixmyts/astUtils.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
exports.forEachChild = ts.forEachChild;
23
function forEachChildRecursive(node, cbNode, depth) {
34
if (depth === void 0) { depth = 0; }

dist/main/lang/fixmyts/quickFix.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
function getRefactoringsByFilePath(refactorings) {
23
var loc = {};
34
for (var _i = 0, refactorings_1 = refactorings; _i < refactorings_1.length; _i++) {

dist/main/lang/fixmyts/quickFixRegistry.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var addClassMember_1 = require("./quickFixes/addClassMember");
23
var addClassMethod_1 = require("./quickFixes/addClassMethod");
34
var addImportStatement_1 = require("./quickFixes/addImportStatement");

dist/main/lang/fixmyts/quickFixes/addClassMember.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var ast = require("../astUtils");
23
var os_1 = require("os");
34
function getIdentifierAndClassNames(error) {

dist/main/lang/fixmyts/quickFixes/addClassMethod.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var ast = require("../astUtils");
23
var os_1 = require("os");
34
function getIdentifierAndClassNames(error) {

dist/main/lang/fixmyts/quickFixes/addImportStatement.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var os_1 = require("os");
23
var displayPartsToString = ts.displayPartsToString, typeToDisplayParts = ts.typeToDisplayParts;
34
var getPathCompletions_1 = require("../../modules/getPathCompletions");

dist/main/lang/fixmyts/quickFixes/equalsToEquals.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var EqualsToEquals = (function () {
23
function EqualsToEquals() {
34
this.key = EqualsToEquals.name;

dist/main/lang/fixmyts/quickFixes/extractVariable.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var os_1 = require("os");
23
var ExtractVariable = (function () {
34
function ExtractVariable() {

dist/main/lang/fixmyts/quickFixes/implementInterface.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var ast = require("../astUtils");
23
var os_1 = require("os");
34
function getClassAndInterfaceName(error) {

dist/main/lang/fixmyts/quickFixes/quoteToTemplate.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var QuoteToTemplate = (function () {
23
function QuoteToTemplate() {
34
this.key = QuoteToTemplate.name;

dist/main/lang/fixmyts/quickFixes/quotesToQuotes.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var QuotesToQuotes = (function () {
23
function QuotesToQuotes() {
34
this.key = QuotesToQuotes.name;

dist/main/lang/fixmyts/quickFixes/singleLineCommentToJsdoc.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 = require("../../utils");
23
var SingleLineCommentToJsdoc = (function () {
34
function SingleLineCommentToJsdoc() {

dist/main/lang/fixmyts/quickFixes/stringConcatToTemplate.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
function isBinaryAddition(node) {
23
return (node.kind == ts.SyntaxKind.BinaryExpression &&
34
node.operatorToken.kind == ts.SyntaxKind.PlusToken);

dist/main/lang/fixmyts/quickFixes/typeAssertPropertyAccessToAny.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var TypeAssertPropertyAccessToAny = (function () {
23
function TypeAssertPropertyAccessToAny() {
34
this.key = TypeAssertPropertyAccessToAny.name;

dist/main/lang/fixmyts/quickFixes/typeAssertPropertyAccessToType.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var TypeAssertPropertyAccessToType = (function () {
23
function TypeAssertPropertyAccessToType() {
34
this.key = TypeAssertPropertyAccessToType.name;

dist/main/lang/fixmyts/quickFixes/wrapInProperty.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var os_1 = require("os");
23
var WrapInProperty = (function () {
34
function WrapInProperty() {

dist/main/lang/modules/astToText.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var astUtils_1 = require("../fixmyts/astUtils");
23
function astToText(srcFile) {
34
var nodeIndex = 0;

dist/main/lang/modules/building.js

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

dist/main/lang/modules/formatting.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
function formatDocument(proj, filePath) {
23
var textChanges = proj.languageService.getFormattingEditsForDocument(filePath, proj.projectFile.project.formatCodeOptions);
34
var edits = textChanges.map(function (change) {

dist/main/lang/modules/getPathCompletions.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 tsconfig = require("../../tsconfig/tsconfig");
34
var utils = require("../utils");

dist/main/lang/modules/moveFiles.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var astUtils_1 = require("../fixmyts/astUtils");
23
var path = require("path");
34
var tsconfig_1 = require("../../tsconfig/tsconfig");

dist/main/lang/modules/programDependencies.js

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

dist/main/lang/projectCache.js

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

dist/main/lang/projectService.js

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

dist/main/lang/transformers/implementations/nullTransformer.js

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

dist/main/lang/transformers/transformer.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
function isTransformerFile(filePath) {
34
var ext = path.extname(filePath);

dist/main/lang/transformers/transformerRegistry.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var allTransformers = [];
23
function add(transformer) {
34
transformer.regex = (new RegExp("transform:" + transformer.name + "{[.\\s]*}transform:" + transformer.name, 'g'));

dist/main/react/htmltotsx.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var HTMLtoJSX = require("htmltojsx");
23
function convert(content, indentSize) {
34
var indent = Array(indentSize + 1).join(' ');

dist/main/tsconfig/dts-generator.js

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

dist/main/tsconfig/formatting.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var os = require('os');
23
function defaultFormatCodeOptions() {
34
return {

dist/main/tsconfig/simpleValidator.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
exports.types = {
23
string: 'string',
34
boolean: 'boolean',

dist/main/tsconfig/tsconfig.js

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

dist/main/utils/fsUtil.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
function consistentPath(filePath) {
23
return filePath.split('\\').join('/');
34
}

dist/typescript/makeTypeScriptGlobal.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var vm = require('vm');
23
var fs = require('fs');
34
global.stack = function () {

dist/worker/child.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var typescriptServices = '';
23
if (process.argv.length > 2) {
34
typescriptServices = process.argv[2];

dist/worker/debug.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
"use strict";
12
exports.debugAll = false;
23
exports.debugSync = false || exports.debugAll;

dist/worker/lib/workerLib.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var __extends = (this && this.__extends) || function (d, b) {
23
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
34
function __() { this.constructor = d; }

dist/worker/parent.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var debug_1 = require("./debug");
23
var childprocess = require('child_process');
34
var exec = childprocess.exec;

0 commit comments

Comments
 (0)