报错如下:
代码可以编译运行,但是会有红线和报错。
解决方法:TypeScript error “TS2354: This syntax requires an imported helper but module ‘tslib’ cannot be found” · Issue #37991 · microsoft/TypeScript · GitHub
在tsconfig.json
中:
{
// ...rest of config
"compilerOptions": {
// ...rest of compiler options
"baseUrl: ".",
"paths": {
"tslib" : ["path/to/node_modules/tslib/tslib.d.ts"]
}
}
}