You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to solve #26, but have trouble compiling the extension.
When I run npm run compile, tsc throws following errors:
> [email protected] compile
> tsc -p ./
src/runner.ts:26:25 - error TS2345: Argument of type 'undefined' is not assignable to parameter of type 'T | PromiseLike<T>'.
26 resolve(cancelValue());
~~~~~~~~~~~~~
src/runner.ts:30:29 - error TS2345: Argument of type 'undefined' is not assignable to parameter of type 'T | PromiseLike<T>'.
30 resolve(cancelValue());
~~~~~~~~~~~~~
src/runner.ts:47:25 - error TS2345: Argument of type 'undefined' is not assignable to parameter of type 'T | PromiseLike<T>'.
47 resolve(cancelValue());
~~~~~~~~~~~~~
src/runner.ts:52:33 - error TS2345: Argument of type 'undefined' is not assignable to parameter of type 'T | PromiseLike<T>'.
52 resolve(cancelValue());
~~~~~~~~~~~~~
Found 4 errors in the same file, starting at: src/runner.ts:26
I'm trying to solve #26, but have trouble compiling the extension.
When I run
npm run compile
,tsc
throws following errors:Any ideas?
Environments:
The text was updated successfully, but these errors were encountered: