mirror of
https://github.com/barkeser2002/mcsleepingserverstarter.git
synced 2026-09-25 02:30:12 +03:00
21 lines
546 B
JSON
21 lines
546 B
JSON
{
|
|
"version": "1.0.0",
|
|
"configurations": [
|
|
{
|
|
"name": "ts-node",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/ts-node",
|
|
"runtimeArgs": ["--transpile-only"],
|
|
// "program": "src/script.ts",
|
|
"program": "src/sleepingServerStarter.ts",
|
|
"cwd": "${workspaceRoot}",
|
|
"internalConsoleOptions": "openOnSessionStart",
|
|
"skipFiles": ["<node_internals>/**", "node_modules/**"],
|
|
"env": {
|
|
"DEFAULT_LOGGER": "true"
|
|
}
|
|
}
|
|
]
|
|
}
|