XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

SpaceNinjaServer

A simple server for a small space ninja game

公开
关注 0 Fork 1 Star 0
返回提交历史

XFEstudio/SpaceNinjaServer

chore: update vscode stuff (#4276)

Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/4276 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>

33ed9d87
Sainan <63328889+Sainan@users.noreply.github.com>
提交于

代码差异

2 个文件 +10 -3
Modified .vscode/launch.json +9 -2
@@ -7,8 +7,15 @@
7 7 {
8 8 "type": "node",
9 9 "request": "launch",
10 "name": "Debug and Watch",
11 "args": ["${workspaceFolder}/scripts/dev.js"],
10 "name": "Run With Hot Reloading",
11 "args": ["${workspaceFolder}/scripts/dev.cjs"],
12 "console": "integratedTerminal"
13 },
14 {
15 "type": "node",
16 "request": "launch",
17 "name": "Run",
18 "args": ["${workspaceFolder}/src/index.ts"],
12 19 "console": "integratedTerminal"
13 20 }
14 21 ]
Modified .vscode/settings.json +1 -1
@@ -1,3 +1,3 @@
1 1 {
2 "typescript.preferences.preferTypeOnlyAutoImports": true
2 "js/ts.preferences.preferTypeOnlyAutoImports": true
3 3 }