Skip to content

Latest commit

 

History

History
2 lines (2 loc) · 212 Bytes

notes.md

File metadata and controls

2 lines (2 loc) · 212 Bytes

Get all tsconfig files under src folder using Powershell

get-childitem -path src *.json -Recurse | where {!$_.PSIsContainer} | select-object FullName | export-csv -notypeinformation -path tsconfig-files.csv