-
Notifications
You must be signed in to change notification settings - Fork 585
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
TypeScriptCompiler doesn't work with TypeScript 1.5 compiler. #1284
Comments
Please send a pull request
|
You can specify the path using the
However, perhaps it would be nice for FAKE to look for the most recent version of TypeScript in the standard directory |
Description
I'm trying to use
TypeScriptCompiler
but it's failing, because it's looking for TypeScript 1.0, which is an old version. I have TypeScript 1.5 installed on my machine, and I'd expect FAKE to be smart enough to pick it up and use to compile my .ts files.I can see
in https://github.com/fsharp/FAKE/blob/b7630d6e9bdb7caf7640ac38ca4166d9d7717d59/src/app/FakeLib/TypeScript.fs#L43. I think it should be able to use my TypeScript binaries from C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.5 (and probably in a way that will make it work with any new version of TypeScript, and not just 1.5).
The text was updated successfully, but these errors were encountered: