Files
tankz/tankz.code-workspace
2024-06-01 20:39:21 +03:00

57 lines
1.1 KiB
Plaintext

{
"folders": [
{
"path": "."
}
],
"settings": {
"haxe.executable": {
"path": "/home/shmyga/sdk/haxe/4.2.5/haxe",
"env": {
"HAXE_STD_PATH": "/home/shmyga/sdk/haxe/4.2.5/std"
}
},
"haxe.configurations": [
[
//"build/client/flash/haxe/debug.hxml",
"build/editor/flash/haxe/debug.hxml"
]
],
"haxe.displayServer": {
"arguments": [
//"-v"
]
}
},
"extensions": {
"recommendations": ["nadako.vshaxe"]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"args": ["${input:task}"],
"name": "${input:task}",
"program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js",
"request": "launch",
"skipFiles": ["<node_internals>/**"],
"type": "node"
}
],
"compounds": [],
"inputs": [
{
"id": "task",
"description": "Please enter task name",
"options": [
"client:flash:test",
"editor:flash:test",
"server:cpp:test",
"generate"
],
"type": "pickString"
}
]
}
}