It seems ionic start didn’t add source mapping to the Typescript project automatically. In the tsconfig file I added: "inlineSourceMap": true. This now provides the correct source maps to be used in the browser console, however, the compilation throws the following error
ERROR in [default]
Option 'sourceMap' cannot be specified with option 'inlineSourceMap'.
ERROR in [default]
Option 'sourceRoot' cannot be specified with option 'inlineSourceMap'.
I don’t understand why it’s mentioning the options sourceMap and sourceRoot as these are not in the config.
This is something we’re enabling by default with our new build revamp.
We never really had a concept of testing/production builds, but this is being added.