mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-18 20:30:08 +08:00
Added .vscode/launch.json for Node.js debugging and .vscode/tailwindcss.json for TailwindCSS directive support in VSCode. These files improve development workflow and editor integration.
12 lines
268 B
JSON
12 lines
268 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node-terminal",
|
|
"request": "launch",
|
|
"name": "调试程序",
|
|
"command": "pnpm run dev:shell",
|
|
"cwd": "${workspaceFolder}"
|
|
}
|
|
]
|
|
} |