Skip to content

Commit

Permalink
deps update. lanuch.json debug current test (#274)
Browse files Browse the repository at this point in the history
  • Loading branch information
kosecki123 committed Sep 24, 2018
1 parent 14cbb57 commit 8d82cca
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 14 deletions.
9 changes: 9 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,14 @@
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"name": "Current TS Tests File",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
"args": ["-r", "ts-node/register", "${relativeFile}"],
"cwd": "${workspaceRoot}",
"protocol": "inspector"
}
]
}
22 changes: 12 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@
"coveralls": "3.0.2",
"ganache-cli": "6.1.8",
"husky": "0.14.3",
"lint-staged": "7.2.2",
"lint-staged": "7.3.0",
"mocha": "5.2.0",
"mocha-typescript": "1.1.17",
"moment": "2.22.2",
"nyc": "13.0.1",
"prettier": "1.14.3",
"ts-node": "6.2.0",
"ts-node": "7.0.1",
"tslint": "5.11.0",
"tslint-config-prettier": "1.15.0",
"tslint-microsoft-contrib": "5.2.1",
Expand Down
3 changes: 3 additions & 0 deletions src/Config/Config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// tslint:disable-next-line:no-reference
/// <reference path="../global.d.ts" />

import * as EAC from 'eac.js-lib';
import Cache from '../Cache';
import { Wallet } from '../Wallet';
Expand Down
1 change: 0 additions & 1 deletion src/global.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
declare module 'bluebird';
declare module 'eac.js-lib';
declare module 'ethereumjs-wallet';
declare module 'web3';
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
],
"target": "es2015",
"moduleResolution": "node",
"module": "none"
"module": "none",
"sourceMap": true
},
"include": [
"./src/**/*",
Expand Down

0 comments on commit 8d82cca

Please sign in to comment.