Skip to content
Advertisement

Can’t debug current typescript file in VS Code because corresponding JavaScript cannot be found

I am using Visual Studio Code version 1.17, and my objective is to debug the current typescript file. I have a build task running, so I always have a corresponding javascript file like this:

JavaScript

I have tried with the following launch.json configuration:

JavaScript

But I get the error: Cannot launch program '--full-path-to-project--/src/folder1/folder2/main.ts' because corresponding JavaScript cannot be found.

But the corresponding JavaScript file exists!

tsconfig.json:

JavaScript

Advertisement

Answer

The configuration for your outFiles points to the wrong directory.

Replacing your launch.json config with this would fix it:

JavaScript

From the vscode launch.json variable reference:

${fileDirName} the current opened file’s dirname

should be the directory you need.

Note that you can also use "outFiles": ["${fileDirname}/**/*.js"] to include subdirectories.

The configuration you’re using adds the following directory:

JavaScript

Which translates to something like:

JavaScript

i.e. the path to the root is in there twice, making it an invalid path.

If your .js files are on a different outDir: simply use the path to such directory. Typescript sourceMaps will do the rest.

For example, if you put your .js files in a dist directory:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement