I'm creating an Ionic
app using es6 modules
, TypeScript
and SystemJS
as a module loader. This is my setup:
tsconfig.json:
{
"compilerOptions": {
...
"target": "es5",
"module": "system",
...
}
}
index.html:
<script src="lib/system.js"></script>
<script src="systemjs.config.js"></script>
<script>System.import('js/app.js')</script>
example script (TypeScript):
import {IConfig} from "./app-config";
export class ConfigLoader {
...
}
Everything runs great in Chrome. However, when debugging using Safari's Web Inspector, I cannot place any breakpoints in the scripts because Web Inspector only shows scripts that are loaded directly from the HTML (through script tags), and not scripts loaded by XHR (in my case, by SystemJS). This means I cannot debug my own scripts, which is of course unacceptable.
I tried to work around this by using SystemJS like before, but also placing the script tags in the html, like so:
<script src="lib/system.js"></script>
<script src="systemjs.config.js"></script>
<script src="js/app-config.js"></script>
... other app scripts
<script>System.import('js/app.js')</script>
However, this doesn't work, as SystemJS does not seem happy about this:
Invalid System.register call. Anonymous System.register calls can only be made by modules loaded by SystemJS.import and not via script tags.
How do I use SystemJS and at the same time have the ability to debug in Safari? I'm looking for a solution a little more sophisticated than 'put a debugger statement in each script'...
debugger
JS keyword – Maniacaldebugger
statement? – Maniacaldebugger;
cannot help you, then other console magic won't do either, dead end. So I think you need to change SystemJS to some static bundler, like webpack or gulp. This will bring lots work, but as the comments show SystemJS really doest fit your case – Unconquerabledebugger
? That is literally adding a breakpoint programmatically 🤔 – Congressionalconfig
inclusion correct ? That is, shouldn't configtype
be something else under<script>
tag ? b) also, wondering, if the safari webview supports Promises. Why ? I think System.import might require that. – Duff