VS Code configuration
This commit is contained in:
24
.vscode/launch.json
vendored
Normal file
24
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"name": "Debug TypeScript (ts-node)",
|
||||
"runtimeArgs": [
|
||||
"-r", "ts-node/register",
|
||||
"-r", "tsconfig-paths/register"
|
||||
],
|
||||
"args": [
|
||||
"${workspaceFolder}/src/index.ts" // Oder deine Hauptdatei
|
||||
],
|
||||
"cwd": "${workspaceFolder}",
|
||||
"protocol": "inspector",
|
||||
"skipFiles": ["<node_internals>/**"],
|
||||
"env": {
|
||||
"TS_NODE_PROJECT": "${workspaceFolder}/tsconfig.json"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user