其他分享
首页 > 其他分享> > src文件夹简写方法,配置别名。jsconfig.json配置别名@提示

src文件夹简写方法,配置别名。jsconfig.json配置别名@提示

作者:互联网

{//jsconfig.json配置别名@提示
//【@代表的是src文件夹,这样将来文件过多,找的时候方便很多】
  "compilerOptions": {
    "baseUrl": "./",
    "paths": {
      "@/*": ["src/*"]
    }
  },
  //不能在node_modules、dist文件夹使用
  "exclude": ["node_modules", "dist"]
}

标签:src,dist,别名,json,文件夹,jsconfig
来源: https://blog.csdn.net/qq_42529941/article/details/121740629