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
I think this option was added with TS 1.5? Anyway, right now compiler options are whitelisted; I'm going to change them to be blacklisted instead. (Some options, like module, are set automatically.)
I was using this before: tsc --sourceMap --sourceRoot "../src", which was working for me.
Now I'm using browserify + grunt + tsify with the following in Gruntfile.js:
preBundleCB: function (bundle) {
bundle.plugin('tsify', { target: 'ES5', module: 'commonjs', sourceMap:true,sourceRoot:'../src2' });
}
but I don't think 'sourceRoot' is doing anything?
The text was updated successfully, but these errors were encountered: