From ca788f0b06aca34d86ea433f022406d5152d09c4 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Tue, 1 Feb 2022 22:13:08 -0500 Subject: debug stuff --- .vscode/launch.json | 32 +++++++++++--------------------- 1 file changed, 11 insertions(+), 21 deletions(-) (limited to '.vscode/launch.json') diff --git a/.vscode/launch.json b/.vscode/launch.json index ef7a204..d0be0a4 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,32 +1,22 @@ { "configurations": [ { + "type": "node-terminal", "command": "yarn start", - "name": "yarn start", - "request": "launch", - "type": "node-terminal" - }, - { - "command": "yarn dev", "name": "BushBot", "request": "launch", - "type": "pwa-node", - "runtimeArgs": [ - "--experimental-specifier-resolution=node" - ], + "cwd": "${workspaceFolder}", + "program": "${workspaceFolder}/dist/src/bot.js", + "sourceMaps": true, + "resolveSourceMapLocations": ["${workspaceFolder}/**"], "skipFiles": [ "/**", - // "**/Yarn/**", - "**/.pnp.js", - "**/.yarn/releases/**" - ], - "outFiles": [ - "${workspaceRoot}/dist/**/*.js", - ], - "sourceMaps": true, - "resolveSourceMapLocations": [ - "${workspaceFolder}/**", + "/**/.yarn/**", + "/**/.nvm/**", + "**/node_modules/**", + "!**/node_modules/discord-akairo/**", + "!**/node_modules/discord.js/**" ] } ] -} \ No newline at end of file +} -- cgit