mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-16 08:37:41 +01:00
42 lines
709 B
JSON
42 lines
709 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "dreammaker",
|
|
"dme": "paradise.dme",
|
|
"problemMatcher": [
|
|
"$dreammaker"
|
|
],
|
|
"group": "build",
|
|
"label": "dm: build - paradise.dme"
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"command": ".\\tgui\\bin\\tgui.bat",
|
|
"linux":{
|
|
"command": "tgui/bin/tgui",
|
|
},
|
|
"problemMatcher": [
|
|
"$tsc",
|
|
"$eslint-stylish"
|
|
],
|
|
"group": "build",
|
|
"label": "tgui: build"
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"command": ".\\tgui\\bin\\tgui-dev-server.bat",
|
|
"linux":{
|
|
"command": "tgui/bin/tgui",
|
|
"args": ["--dev"]
|
|
},
|
|
"problemMatcher": [
|
|
"$tsc",
|
|
"$eslint-stylish"
|
|
],
|
|
"group": "build",
|
|
"label": "tgui: run dev server"
|
|
},
|
|
]
|
|
}
|