我正在使用--project
指向我的tsconfig.json
,其中我有exclude
这样的属性:
"exclude": [
"foldertoexclude/**/*.ts"
]
但是,该文件夹仍在被删除。我做错了什么?
答案 0 :(得分:0)
您可以尝试以下方法,看看是否可行:
{
// The following will hide the js and map files in the editor
"files.exclude": {
"foldertoexclude":true
}
}