source-maps Questions
6
Solved
I've this Yeoman scaffolded project from the generator-express-no-stress-typescript template. I need to debug it, as in "step through the typescript code" with Visual Studio Code (and no,...
Mobile asked 27/5, 2022 at 9:21
3
When I have an error in my React Native app, the stack trace that is printed to the console points to index.bundle instead of the original source code (see example below). Is there a way to configu...
Capper asked 27/4, 2022 at 17:26
4
Solved
I'm trying to understand how css source map works. I've created a very simple scss file.
#navbar {
color: black;
}
When I compile the above scss, I get the following map file.
{
"version": "3"...
Egide asked 12/10, 2013 at 3:55
4
Solved
I am working on a project where I have to statically analyse JavaScript code. However, for a few libraries, I only have access to a minified version of the file and the corresponding source-map. Is...
Brachyuran asked 22/11, 2013 at 21:32
1
I'm very used to cross-browser web APIs having a specification document owned by a standards body, e.g. the WebRTC spec from the W3C, or the WebGL spec from Khronos.
Another web API is "Source...
Inducement asked 28/9, 2020 at 13:17
3
Solved
Is it possible to load an external source-map file (JSON), not included in the minified JS file used on a website?
So far the only ways I know of to include a source-map for a particular js file ...
Unfurl asked 4/12, 2015 at 11:17
4
I have a Typescript project that is launched as follows:
ts-node-dev --preserve-symlinks --inspect=0.0.0.0 -- src/server.ts
I can debug it with Visual Studio Code, but the debugger breaks at the...
Sibie asked 13/4, 2020 at 14:57
2
I remember finding a source map viewer somewhere one time, which showed you the source and the source-map side by side (i think also with the compiled code), and let you scroll your mouse around to...
Obi asked 13/2, 2015 at 19:56
13
Solved
I suddenly can't debug my Angular Application. Not quite sure what I did. It might have happen after I updated node.js
Angular: 13.1.1
NodeJS: 18.1.0
VSCode: 1.67.1
Launch.json
"configuratio...
Draghound asked 11/5, 2022 at 15:5
1
I have an Aurelia TypeScript project where my compiled JavaScript files go into the .../wwwroot subfolder and the original typescript files are located in .../src. I am trying to use the Chrome Deb...
Wrap asked 9/8, 2016 at 9:1
3
Solved
Is there a quick way to switch from the jsx code shown in Chrome DevTools to the raw ES5 and back again?
Michaelis asked 25/1, 2016 at 20:49
19
Solved
My code
<html>
<head>
<!-- Load TensorFlow.js -->
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs"></script>
<!-- Load Posenet -->
<...
Bimolecular asked 14/4, 2020 at 10:19
2
I'm using Sentry for error reporting on the React app that I created.
The problem with it is that I don't have an idea how to debug certain issues because I don't know what's the exact file the err...
Moreira asked 26/4, 2021 at 5:53
4
angular.json only gives the option to turn on/off sourcemap generation but by default it's in separate files.
tsconfig.json gives also the inlineSources option but it's ignored by angular-cli.
Is...
Wallaroo asked 25/9, 2018 at 13:34
2
I'm developing an Angular app. When trying to debug my directive's link function I run into problems with Chrome regarding source maps.
On the first load of the page (triggered by Gulp and Browser...
Titanomachy asked 3/5, 2015 at 11:14
3
When there is an error in my react 17 application, the chrome developer console shows errors to chunks file paths instead of the actual source file containing the component with error. Is it possib...
Sigridsigsmond asked 5/11, 2021 at 16:47
5
I've got a two-step compilation process for my web application. Firstly, I compile CoffeeScript files into JavaScript files [1]. Then the JavaScript files (both ones that come from CoffeeScript, an...
Whipstall asked 11/2, 2014 at 17:52
3
As in title: Is there an equivalent to Chrome's DevTools 'workspaces' in Firefox?
If not - how else can I work with source maps if my source js and scss files are outside webroot? Can I save chang...
Huntington asked 4/3, 2015 at 13:42
6
Solved
I'm pretty new to webpack and having some trouble configuring it to produce the necessary source maps. In the devtools it says
Source Map detected
but it shows the bundle and not the original...
Harker asked 20/6, 2016 at 17:9
2
Solved
I finally got typescript working in my project, but the breakpoints do not stop in the correct line, and the variable values are not available until you step into some more lines of code in the ste...
Crispas asked 20/6, 2020 at 12:20
1
I have a performance profiling recordings from customer where I can see obfuscated method names.
I have both the obfuscated JS file and source maps for it.
I would like to see unobfuscated method n...
Clawson asked 1/12, 2021 at 10:6
11
I'm receiving a bummer warning and have been unable to find an available solution:
WARNING in ../lensing/dist/main.js
Module Warning (from ./node_modules/source-map-loader/dist/cjs.js):
Failed to p...
Communicable asked 31/7, 2020 at 16:38
5
I am building a react app with firebase library v7.15.5 and when I'm importing 'firebase/auth', it works fine but it throws me warnings in a terminal:
WARNING in ./node_modules/@firebase/auth/dist/...
Hyaloplasm asked 2/7, 2020 at 10:44
3
Solved
I have been working with angular project and have angular version is 13 and node is 16 versions.
When i use command npm run start its throwing an error(compilation error). Pasted the error below
Er...
Botzow asked 12/5, 2022 at 5:24
3
Solved
I'm wondering how to generate source maps in create-react-app? are they done implicitly? and do they live in the build folder
I've read quite a lot about them being generated with webpack but my a...
Theodosia asked 29/4, 2019 at 13:21
1 Next >
© 2022 - 2024 — McMap. All rights reserved.