mirror of
https://github.com/ahmadk953/poixpixel-discord-bot.git
synced 2025-04-01 01:04:16 +00:00
26 lines
562 B
JSON
26 lines
562 B
JSON
{
|
|
"version": "0.1.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Build and Run",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/target/_.cjs",
|
|
"preLaunchTask": "build",
|
|
"skipFiles": ["<node_internals>/**"],
|
|
"outFiles": ["${workspaceFolder}/target/**/*.cjs"]
|
|
}
|
|
],
|
|
"tasks": [
|
|
{
|
|
"label": "build",
|
|
"type": "shell",
|
|
"command": "node",
|
|
"args": ["${workspaceFolder}/build/compile.js"],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
}
|
|
]
|
|
}
|