Being new to sourcemaps and typescript, I am faced with a project that has been compiled into a single javascript file from multiple typescript files.
The files available to me are:
lib.js (the compiled js code of the project)
lib.js.map (the source map of the lib.js)
lib.d.ts (the "header" of the lib.js before it was compiled)
Upon trying to view the original source files (.ts) in a browser, they appear blank in Chrome. Firefox displays a message stating:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /path/source/file/file.ts was not found on this server. </p>
</body></html>
I'm hoping for a way to view the original .ts files, as working with the compiled 2MB+ lib.js file is proving to be challenging.
Thank you for any assistance provided!