Remove breakpoint flag

This commit is contained in:
Dirk Baeumer
2016-06-23 13:50:01 +02:00
parent 216c6b8a6d
commit 0edf9421da

View File

@@ -210,7 +210,7 @@ export default class TypeScriptServiceClient implements ITypescriptServiceClient
this.servicePromise = new Promise<cp.ChildProcess>((resolve, reject) => {
try {
let options: electron.IForkOptions = {
execArgv: [`--debug-brk=5859`]
execArgv: [] // [`--debug-brk=5859`]
};
let value = process.env.TSS_DEBUG;
if (value) {