Skip to content

Commit

Permalink
Fix missing types #542 (#545)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilkisiela authored May 12, 2020
1 parent 8c451f4 commit 251eb16
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 12 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

### vNEXT

- Fix missing types [#542](https://github.com/kamilkisiela/graphql-config/issues/542)

### v3.0.1

- use GraphQL Toolkit v0.10.6
Expand Down
15 changes: 3 additions & 12 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@
"compilerOptions": {
"module": "esnext",
"target": "es5",
"lib": [
"es2017",
"dom",
"esnext.asynciterable"
],
"lib": ["es2017", "dom", "esnext.asynciterable"],
"outDir": "dist",
"declaration": true,
"declarationMap": true,
Expand All @@ -16,11 +12,6 @@
"noUnusedLocals": true,
"noUnusedParameters": true
},
"exclude": [
"node_modules",
"dist"
],
"files": [
"./src/index.ts"
]
"exclude": ["node_modules", "dist"],
"include": ["src"]
}

0 comments on commit 251eb16

Please sign in to comment.