-
-
Notifications
You must be signed in to change notification settings - Fork 159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Core libs failing to compile? #124
Comments
Do you get the same errors if you download this using the exercism client? exercism.io |
Is |
|
I am not seeing the same errors. What happens if add the solution to the file?
|
As I'd expect, I just get the core lib errors:
|
Are you using visual studio? I’m out of ideas. Maybe try reinstalling TypeScript? |
I'm on OSX (and using emacs, but that shouldn't matter). Alright, it took some finagling, but a full bore uninstall/reinstall worked. Here's my transcript in case anyone else runs into this issue.
and my lovely new test log:
|
Thanks for your help! In summary, a full bore uninstall/reinstall was the solution to this problem. I suspect rm -rf ~/exercism/typescript # your exercism directory
npm uninstall -g typescript && npm uninstall -g yarn # if originally installed via npm
brew uninstall typescript yarn # if originally installed via homebrew
rm -rf ~/node_modules/ # remove node modules
brew install typescript yarn
exercism fetch typescript
cd ~/exercism/typescript/hello_world/ # or wherever exercism places the directory
yarn install && yarn test |
Relatively new to JS/TS (and certainly new to the node ecosystem), so bear with me…
gives me a good chunk of errors that would seem to have nothing to do with the exercise:
versions:
As the core libs are failing to compile, I can never get the tests to actually pass (even though I can see there are no errors with my file). What's going on, here?
The text was updated successfully, but these errors were encountered: