batch-iterable
Version:
An abstraction to work with iterables of asyncIterables
25 lines (24 loc) • 640 B
JSON
{
// Change this to match your project
"include": ["./index.js"],
"compilerOptions": {
"outDir": "types",
"lib": ["es2020"],
// Tells TypeScript to read JS files, as
// normally they are ignored as source files
"allowJs": true,
"checkJs": true,
// Generate d.ts files
"declaration": true,
// This compiler run should
// only output d.ts files
"emitDeclarationOnly": true,
// go to js file when using IDE functions like
// "Go to Definition" in VSCode
"declarationMap": true,
"strict": true,
"esModuleInterop": true,
"types": [],
"downlevelIteration": true
}
}