Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to debug Typescript in VSCode

Here is my launch.json

    "version": "0.2.0",
    "configurations": [
        {
            "type": "node",
            "name": "Launch Server",
            "request": "launch",
            "program": "${workspaceRoot}/server/src/app.ts",
            "cwd": "${workspaceRoot}",
            "env": {
                "NODE_ENV": "dev"
            },
            "skipFiles": [
                "node_modules/**/*.js"
            ],
            "outFiles": [
                "${workspaceRoot}/dist/server/src/*.js"
            ],
            "sourceMaps": true,
            "stopOnEntry": true,
            "console": "internalConsole"
        },

My source folder:

enter image description here

My dist folder:

enter image description here

The error I get is:

Cannot launch program '/Dev/myapp/server/src/app.ts'; setting the 'outFiles' attribute might help.

If I change the "program" property to ""program": "${workspaceRoot}/dist/server/src/app.js", it works but I'm then debugging the transpiled javascript and not the typescript. Obviously the transpiling with .map files is working, what is wrong?

tsconfig.json

{
  "compilerOptions": {
    "allowJs": false,
    "baseUrl": "",
    "declaration": false,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "lib": [
      "es6",
      "dom"
    ],
    "mapRoot": "./",
    "module": "commonjs",
    "moduleResolution": "node",
    "outDir": "./dist",
    "sourceMap": true,
    "target": "es6",
    "typeRoots": [
      "node_modules/@types"
    ]
  },
  "exclude": [
    "web",
    "dist",
    "node_modules"
  ]
}
like image 445
Ryan Langton Avatar asked Mar 12 '17 12:03

Ryan Langton


2 Answers

In my case, I had in launch.json

"program": "${file}"

Which obviously tried to run the ts file in node, when hitting F5 / Ctrl+F5 when changing it to

"program": "${workspaceFolder}/${fileBasenameNoExtension}.js"

allows me to run both active ts and js files...

also launch tsc -watch build task to get js file compiled on the fly

like image 163
Jonas Brandel Avatar answered Oct 16 '22 22:10

Jonas Brandel


You are missing src folder in your configuration:

"outFiles": [
    "${workspaceRoot}/dist/server/src/*.js"
],

Also set your mapRoot in tsconfig.json to ./dist/. Currently it will search your ./server/src folder for sourcemaps instead of ./dist

like image 31
Saravana Avatar answered Oct 16 '22 22:10

Saravana