Open nfantone opened 8 years ago
This seems to be related to *Disposables
objects being moved to a different package: ts-disposables.
To workaround the issue,
ts-disposables
as a dependency.cd ~/.atom/packages/omnisharp-atom
npm i --save ts-disposables
*.ts
file with an import of xxxDisposable
(like CompositeDisposable
) from "omnisharp-client"
to "ts-disposable"
(of which there are many, so be patient). For instance,import {Disposable, CompositeDisposable, IDisposable} from "omnisharp-client";
// changes to '... from "ts-disposables";'
npm i
on the package root directory.cd ~/.atom/packages/omnisharp-atom
npm i
Sadly, while this fixes this issue, it seems like Omnisharp still does nothing more apart from loading. I got no intellisense, no autocomplete, no code format, zero warnings or errors.
Seems like this whole project needs a big update.
omnisharp-atom
package.Atom Version: 1.11.0-dev-89c638a Electron Version: 0.37.8 System: Mac OS X 10.11.6 Thrown From: omnisharp-atom package, v0.30.5
Stack Trace
Failed to activate the omnisharp-atom package
Config
Installed Packages
Some other people here #578 have been experiencing the same, but since the issue is closed (and a year old), I figure I should open a new one.