Skip to content

Commit

Permalink
chore(deps): upgrade typescript to ~3.5.0 (#356)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith authored May 29, 2019
1 parent 00206f2 commit e3a3b97
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
"sinon": "^7.3.1",
"source-map-support": "^0.5.5",
"tmp": "0.1.0",
"typescript": "~3.4.0"
"typescript": "~3.5.0"
},
"peerDependencies": {
"typescript": "^3.0.0"
Expand Down
2 changes: 1 addition & 1 deletion src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export async function getTSConfig(
customReadFilep?: ReadFileP
): Promise<ConfigFile> {
customReadFilep = customReadFilep || readFilep;
const readArr = new Set();
const readArr = new Set<string>();
return getBase('tsconfig.json', customReadFilep, readArr, rootDir);
}

Expand Down

0 comments on commit e3a3b97

Please sign in to comment.