DefinitelyTyped/types/graphql/tsconfig.json
Brad Zacher 7aa84a6417 [@types/graphql] Switch void for more correct undefined | null typing (#25639)
* [@types/graphql] Switch void for more correct `undefined | null` typing

* Moved Maybe.d.ts to a better place

* Moved and fixed up Maybe imports
2018-05-10 12:58:19 -07:00

25 lines
524 B
JSON

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