We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fbd5bf5 + f90113c commit fa45bebCopy full SHA for fa45beb
.gitignore
@@ -15,6 +15,7 @@ dist-ssr
15
# Editor directories and files
16
.vscode/*
17
!.vscode/extensions.json
18
+!.vscode/launch.json
19
.idea
20
.DS_Store
21
*.suo
.vscode/launch.json
@@ -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
+ }
+ ]
+}
0 commit comments