2016-11-25 1 views
0

특정 경로 (예 : fe/dist)의 파일을 제외하고 싶지만 작동하지 않습니다.특정 경로의 파일 제외

"files.exclude": { 
    "**/dist": true, // working, but exclude all dist folders (don't want) 

    "fe/dist"   // not working 
    "/fe/dist"  // not working 
    "**/fe/dist"  // not working 
    "./fe/dist"  // not working 
    "${workspaceRoot}/fe/dist": true,   // not working 
} 

어떤 아이디어가 있습니까?

답변

0

는, (예를 들어, 철/DIST에 대한) 만 특정 하위 폴더를 제외

"files.exclude": { 
    "**fe/dist": true 
} 
+0

그레이트 시도합니다! Wors !! 많은 감사 :) –

관련 문제