使用--project时,tslint不会排除tsconfig.json中的文件

时间:2018-05-15 18:36:47

标签: tslint

我正在使用--project指向我的tsconfig.json,其中我有exclude这样的属性:

"exclude": [
  "foldertoexclude/**/*.ts"
]

但是,该文件夹仍在被删除。我做错了什么?

1 个答案:

答案 0 :(得分:0)

您可以尝试以下方法,看看是否可行:

{
    // The following will hide the js and map files in the editor
    "files.exclude": {     
        "foldertoexclude":true
     }
}