Just made an update to my typescript file in my app and ran it.
Source maps are enabled.
When I check in Chrome by pressing F12 and browsing to the script, I see the .ts file without the recent function I added, but the .js file does have it.
I tried force refreshing, deleting the .map file, ensuring no other copies of the file exist on the disk, closing and reopening Chrome, rebuilding the project, and yet it still only shows the old version of the file without my new function. The JavaScript also doesn't seem to execute, but I can't debug it to figure out why.
Any suggestions on how to debug this issue?