Ok, I created a basic Angular 2 Typescript project using 5 Min QUICKSTART and it works.
My Typescript transpiler is configured to create the source map:
tsconfig.js
{ "compilerOptions": { "target": "es5", "module": "commonjs", "moduleResolution": "node", "sourceMap": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "removeComments": false, "noImplicitAny": false } }
Now I can see * .ts files in Chrome and also debug them without problems. But Firefox (and FireFox Developer Edition, for that matter) doesnβt show .ts files at all, even if Show Source Sources is checked in the debugger options. p>

javascript firefox typescript firefox-developer-tools firefox-developer-edition
Saurabh palatkar
source share