Skip to content

Commit fa45beb

Browse files
authoredJan 12, 2024
Merge pull request #3 from theodo-group/chore/add-debug-configuration
Chore/add debug configuration
2 parents fbd5bf5 + f90113c commit fa45beb

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ dist-ssr
1515
# Editor directories and files
1616
.vscode/*
1717
!.vscode/extensions.json
18+
!.vscode/launch.json
1819
.idea
1920
.DS_Store
2021
*.suo

‎.vscode/launch.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "node-terminal",
6+
"request": "launch",
7+
"name": "Debug cli",
8+
"command": "pnpm run calc",
9+
"sourceMaps": true,
10+
"preLaunchTask": "tsc: build - cli/tsconfig.json",
11+
"outFiles": ["${workspaceFolder}/cli/dist/**/*.js"],
12+
"skipFiles": ["<node_internals>/**"],
13+
"cwd": "${workspaceFolder}/cli"
14+
}
15+
]
16+
}

0 commit comments

Comments
 (0)
Please sign in to comment.