Files
schoolNews/.vscode/tasks.json

19 lines
320 B
JSON
Raw Normal View History

2025-10-06 16:20:32 +08:00
{
"version": "2.0.0",
"tasks": [
{
"label": "set-console-utf8",
"type": "shell",
"command": "chcp",
"args": ["65001"],
"group": "build",
"presentation": {
"echo": false,
"reveal": "silent",
"focus": false,
"panel": "shared"
}
}
]
}