vscode: jsconfig.json 让 @ 路径可跳转

vscdoe项目的一个配置文件
更新于: 2023-09-01 13:01:41

what

jsconfig.json is tsconfig.json with "allowJs" attribute set to true.

jsconfig 其实就是 tsconfig 里的 allowJs: true

cheatsheet

功能代码
路径可索引
{
  "compilerOptions": {
    "baseUrl": ".",
    "paths": {
      "ClientApp/*": ["./ClientApp/*"]
    }
  }
}

参考