diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-02-01 22:13:08 -0500 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-02-01 22:13:08 -0500 |
commit | ca788f0b06aca34d86ea433f022406d5152d09c4 (patch) | |
tree | bfd00ee0e7ed373a66fb4789af57786224949a39 /.vscode/launch.json | |
parent | c587f6418957d4ff1641730e923c3f06a811982f (diff) | |
download | tanzanite-ca788f0b06aca34d86ea433f022406d5152d09c4.tar.gz tanzanite-ca788f0b06aca34d86ea433f022406d5152d09c4.tar.bz2 tanzanite-ca788f0b06aca34d86ea433f022406d5152d09c4.zip |
debug stuff
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 32 |
1 files changed, 11 insertions, 21 deletions
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": [ "<node_internals>/**", - // "**/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 +} |