This repository has been archived on 2024-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Maneger/.vscode/launch.json
Matheus Sampaio Queiroga 98074524d2 Reewrite project (#430)
* remove files and init

* Update bedrock

* add java

* Init spigot

* Init pocketmine

* Update package.json and start pocketmine

* Push

* Push

* update files

* update break line in childProcess and add stop

* Pocketmine detect port and protocol

* add link world

* update bedrock regex
2022-08-31 07:03:14 -03:00

22 lines
447 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"name": "Mocha Tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/mocha.js",
"internalConsoleOptions": "openOnSessionStart",
"request": "launch",
"skipFiles": [
"<node_internals>/**"
],
"args": [
"-r", "ts-node/register",
"--colors",
"${workspaceFolder}/tests/**/*.ts"
],
}
]
}