Files
DefinitelyTyped/types/async/tsconfig.json
Jonathan Mast 65043c2b84 🤖 Merge PR #63180 [async] Add AsyncIterable to IterableCollection type by @jonmast
The async library supports reading from an async iterable in addition to
synchronous forms, update the types to reflect that.
2022-11-27 16:51:59 -08:00

28 lines
609 B
JSON

{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": false,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"test/index.ts",
"test/explicit.ts",
"test/es6-generators.ts",
"test/async-generators.ts"
]
}