DefinitelyTyped/types/gremlin/tsconfig.json
Keith Kirton d440de8dfc
feat(gremlin): Add hasNext and [Symbol.asyncIterator] to `… (#42672)
* Declare `hasNext` on `Traversal`

* Define `AsyncIterableIterator` for `Traversal`

Enables `for-await-of` use for query result iteration.
2020-02-27 11:10:58 -08:00

26 lines
549 B
JSON

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