DefinitelyTyped/types/koa-graphql/tsconfig.json
Matheus Gonçalves da Silva a72e5b0e7c add koa-graphql types (#36619)
* add koa-graphql types

* fix ts version

* fix tests and lint
2019-07-03 09:49:53 -07:00

25 lines
528 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"esnext.asynciterable"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"strictFunctionTypes": true,
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"koa-graphql-tests.ts"
]
}