Cannot find name 'AsyncIterator' error in Typescript compilation process 问题解决
解决方法:
tsconfig.json:
添加lib 编译选项
{
"compilerOptions": {
"lib":[
"esnext.asynciterable",
"es2015"
]
}
}
解决方法:
tsconfig.json:
添加lib 编译选项
{
"compilerOptions": {
"lib":[
"esnext.asynciterable",
"es2015"
]
}
}