SuperMonster003 / AutoJs6-VSCode-Extension

Debugger for AutoJs6 on VSCode (VSCode 平台的 AutoJs6 调试器)
GNU General Public License v3.0
83 stars 67 forks source link

[功能建议] 新建项目时自动创建declarations软连接 #8

Open photkey opened 1 year ago

photkey commented 1 year ago

VScode中每新建一个项目都要复制一份declarations有点麻烦,希望在用扩展新建项目时可以自动创建软连接,这样就不用复制那么多了,而且declarations有更新时也更方便。 Windows下 创建软连接已经测试过可以用的,命令类似下面的: mklink /D D:\项目目录\declarations C:\Users\用户名\node_modules\@sm003\autojs6-dts\declarations

photkey commented 1 year ago
@echo off
set "PROJECT_DIR=%CD%"
set "LINK_TARGET=%USERPROFILE%\node_modules\@sm003\autojs6-dts\declarations"
set "LINK_NAME=%PROJECT_DIR%\declarations"

mklink /D "%LINK_NAME%" "%LINK_TARGET%"

这个是我写得一个批处理文件 实现在当前工作目录创建declarations软连接