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
From a commandline (copying the Microsft/TypeScript readme instructions):
git clone https://github.com/Microsoft/TypeScript.git
cd TypeScript
npm install -g gulp
npm install
gulp local
checking any of the *.js.map files in the built/local directory reveals that the path to the source files is truncated. From tsserver.js.map, for example, we have
The paths are correct nowadays (ofc, gulp is our only build tool now, it had to be fixed) - sourceRoot is "" and the paths all look like ../../src/compiler/core.ts.
TypeScript Version: master -- commit 40327b
Tested on Ubuntu 16.04 and Win10.
From a commandline (copying the Microsft/TypeScript readme instructions):
checking any of the
*.js.map
files in thebuilt/local
directory reveals that the path to the source files is truncated. Fromtsserver.js.map
, for example, we haveExpected behavior:
Obtained by building with jake:
Actual behavior:
Obtained by building with gulp:
EDIT: clarifying sentence.
The text was updated successfully, but these errors were encountered: