diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-09-26 22:29:30 +1000 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-09-26 22:41:21 +1000 |
commit | dbaf39237ae3a41b6b1ac6a6cd3486129599b815 (patch) | |
tree | 350cca4889d0804445eddbd8467d274b27307776 /.vscode/launch.json | |
parent | Remove the cdn storage location log (diff) | |
download | server-dbaf39237ae3a41b6b1ac6a6cd3486129599b815.tar.xz |
Prettier
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 86eb202e..09a69132 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -8,21 +8,17 @@ "name": "Launch current file", "program": "${relativeFile}", "request": "launch", - "skipFiles": [ - "<node_internals>/**" - ], + "skipFiles": ["<node_internals>/**"], "type": "node" }, { "type": "node", "request": "launch", "name": "Bundle", - "skipFiles": [ - "<node_internals>/**" - ], + "skipFiles": ["<node_internals>/**"], "program": "${workspaceFolder}/src/bundle/start.ts", - "outFiles": [ "${workspaceFolder}/dist/**/*.js" ], + "outFiles": ["${workspaceFolder}/dist/**/*.js"], "preLaunchTask": "tsc: build - tsconfig.json" } ] -} \ No newline at end of file +} |