【发布时间】:2018-09-07 05:01:55
【问题描述】:
我使用--project 指向我的tsconfig.json,其中我有一个exclude 属性,如下所示:
"exclude": [
"foldertoexclude/**/*.ts"
]
但是,该文件夹仍在检查中。我做错了什么?
【问题讨论】:
标签: tslint
我使用--project 指向我的tsconfig.json,其中我有一个exclude 属性,如下所示:
"exclude": [
"foldertoexclude/**/*.ts"
]
但是,该文件夹仍在检查中。我做错了什么?
【问题讨论】:
标签: tslint
您可以尝试以下方法,看看是否有效:
{
// The following will hide the js and map files in the editor
"files.exclude": {
"foldertoexclude":true
}
}
【讨论】: