Skip to content

Commit

Permalink
apollographql#626 Fix typescript issues
Browse files Browse the repository at this point in the history
  • Loading branch information
addityasingh committed Apr 30, 2018
1 parent 949d6d5 commit 79c3051
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
5 changes: 1 addition & 4 deletions lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@
}
},
"packages": [
"packages/apollo-server-core",
"packages/apollo-server-integration-testsuite",
"packages/apollo-server-module-graphiql",
"packages/apollo-server-fastify"
"packages/*"
]
}
11 changes: 10 additions & 1 deletion packages/apollo-server-fastify/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
{
"extends": "../../tsconfig",
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"declaration": true,
"noImplicitAny": false,
"allowSyntheticDefaultImports": false,
"pretty": true,
"removeComments": true,
"lib": ["es6", "esnext.asynciterable"],
"rootDir": "./src",
"outDir": "./dist",
"typeRoots": ["node_modules/@types"]
Expand Down

0 comments on commit 79c3051

Please sign in to comment.