I am using this project template. And i set a breakpoint into App class in App.tsx file. Shared configurations below. nothing look wrong but it doesnt work even "F5" not trigg anything.
I searched many but couldnt find any proper solution.. launch.json:
"version": "0.2.0",
"configurations":
[
{
"args": [],
"cwd": "${workspaceRoot}",
"env": {
"NODE_ENV": "development"
},
"externalConsole": false,
"name": "DEBUG",
"outDir": "${workspaceRoot}/build/dist",
"preLaunchTask": "compile",
"program": "${workspaceRoot}/src/App.tsx",
"request": "launch",
"runtimeArgs": [
"--nolazy"
],
"runtimeExecutable": null,
"sourceMaps": true,
"stopOnEntry": false,
"type": "node"
}
]
tsconfig:
{
"compilerOptions": {
"outDir": "build/dist",
"module": "commonjs",
"target": "es5",
"lib": ["es6", "dom"],
"sourceMap": true,
"allowJs": true,
"jsx": "react",
"moduleResolution": "node",
"rootDir": "src",
here is debug config name and breakpoint:

and working directory:
