Skip to content

Commit ac37535

Browse files
committed
Fixing some error messages.
1 parent 50e9f36 commit ac37535

File tree

8 files changed

+15
-0
lines changed

8 files changed

+15
-0
lines changed

src/ExceptionlessClient-spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/// <reference path="typings/tsd.d.ts" />
2+
13
import { ExceptionlessClient } from 'ExceptionlessClient';
24
import { EventPluginContext } from './plugins/EventPluginContext';
35

src/Utils-spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/// <reference path="typings/tsd.d.ts" />
2+
13
import { IEvent } from './models/IEvent';
24
import { Utils } from 'Utils';
35

src/bootstrap/DefaultBootstrapper.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/// <reference path="../typings/tsd.d.ts" />
2+
13
import { IBootstrapper } from 'IBootstrapper';
24
import { Configuration } from '../configuration/Configuration';
35
import { IConfigurationSettings } from '../configuration/IConfigurationSettings';

src/bootstrap/NodeBootstrapper.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export class NodeBootstrapper implements IBootstrapper {
1313
public register(): void {
1414
const beforeExit:string = 'beforeExit';
1515
const uncaughtException:string = 'uncaughtException';
16+
var process, global: any;
1617

1718
if (!(typeof window === 'undefined' && typeof global !== 'undefined' && {}.toString.call(global) === '[object global]')) {
1819
return;

src/configuration/Configuration-spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/// <reference path="../typings/tsd.d.ts" />
2+
13
import { Configuration } from './Configuration';
24
import { EventPluginContext } from '../plugins/EventPluginContext';
35

src/plugins/EventPluginManager-spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/// <reference path="../typings/tsd.d.ts" />
2+
13
import { Configuration } from '../configuration/Configuration';
24
import { ContextData } from 'ContextData';
35
import { ExceptionlessClient } from '../ExceptionlessClient';

src/storage/InMemoryStorage-spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/// <reference path="../typings/tsd.d.ts" />
2+
13
import { IEvent } from '../models/IEvent';
24
import { InMemoryStorage } from './InMemoryStorage';
35
import { IStorageItem } from './IStorageItem';

src/submission/DefaultSubmissionClient-spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/// <reference path="../typings/tsd.d.ts" />
2+
13
import { Configuration } from '../configuration/Configuration';
24
import { IEvent } from '../models/IEvent';
35
import { IUserDescription } from '../models/IUserDescription';

0 commit comments

Comments
 (0)