I've been attempting to implement the finally method on a promise but continue running into this issue.
Property 'finally' does not exist on type 'Promise<void>'.
After researching similar problems, I found suggestions to add "es2018.promise" to the "lib" array in tsconfig.js. However, this leads to the subsequent error:
typescript error
Argument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'esnext', 'dom',
'dom.iterable', 'webworker', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator',
'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol',
'es2015.symbol.wellknown', 'es2016.array.include', 'es2017.object', 'es2017.sharedmemory', 'es2017.string',
'es2017.intl', 'esnext.asynciterable'.
Any assistance in resolving this would be greatly welcomed!