Skip to content

Commit

Permalink
Add VSCode debug config
Browse files Browse the repository at this point in the history
  • Loading branch information
Inrixia committed Oct 30, 2024
1 parent 27f1b9c commit b9663d0
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ desktop.ini
.DS_Store
._*

# VSCode Directory
.vscode/

# Dependency directories
node_modules/

Expand All @@ -24,5 +21,5 @@ dist/
tsconfig.tsbuildinfo

# Build ignores
build/
tsconfig.tsbuildinfo
build/
tsconfig.tsbuildinfo
13 changes: 13 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/dist/float.js",
"preLaunchTask": "tsc",
"outFiles": ["${workspaceFolder}/dist/**/*.js"]
}
]
}
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"typescript.tsserver.experimental.enableProjectDiagnostics": true
}
10 changes: 10 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "tsc",
"command": "pnpm run tsc --sourceMap",
"type": "shell"
}
]
}

0 comments on commit b9663d0

Please sign in to comment.