(directoryName: string)
| 83 | } |
| 84 | |
| 85 | directoryExists?(directoryName: string): boolean { |
| 86 | if (directoryName.endsWith('node_modules/@types')) { |
| 87 | return false; |
| 88 | } |
| 89 | |
| 90 | return this.fileManager.directoryExists(this.fileManager.resolvePath(directoryName)); |
| 91 | } |
| 92 | |
| 93 | fileExists(path: string): boolean { |
| 94 | return this.fileManager.fileExists(this.fileManager.resolvePath(path)); |
no test coverage detected