()
| 517 | } |
| 518 | |
| 519 | getDefaultProjectDir(): string { |
| 520 | const config = this.config.loadConfigOrDefault(); |
| 521 | return resolveProjectParentDir(undefined, config.defaultProjectDir); |
| 522 | } |
| 523 | |
| 524 | async setDefaultProjectDir(dirPath: string): Promise<void> { |
| 525 | const trimmed = dirPath.trim(); |
no test coverage detected