Skip to content

Commit

Permalink
fix(deps): updated dependencies & fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
schickling committed Feb 14, 2018
1 parent b3134ac commit 18ec2c7
Show file tree
Hide file tree
Showing 4 changed files with 3,050 additions and 7 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@
},
"homepage": "https://github.com/graphcool/graphql-config#readme",
"devDependencies": {
"@types/graphql": "0.11.7",
"@types/node": "8.5.7",
"@types/graphql": "0.12.4",
"@types/node": "9.4.6",
"@types/node-fetch": "1.6.7",
"ava": "0.24.0",
"ava": "0.25.0",
"cpx": "1.5.0",
"graphql": "^0.12.3",
"graphql": "^0.13.0",
"rimraf": "2.6.2",
"tslint": "5.8.0",
"tslint": "5.9.1",
"tslint-config-standard": "7.0.0",
"typescript": "2.7.1"
},
Expand Down
2 changes: 1 addition & 1 deletion src/extensions/endpoints/resolveRefString.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function resolveRefString(str: string, values?: object): string {
return res
}

export function resolveEnvsInValues<T extends any>(
export function resolveEnvsInValues<T extends { [key: string]: any}>(
config: T,
env: { [name: string]: string | undefined },
): T {
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"target": "es5",
"lib": [
"es2017",
"DOM",
"dom",
"esnext.asynciterable"
],
"outDir": "lib",
Expand Down
Loading

0 comments on commit 18ec2c7

Please sign in to comment.