()
| 752 | } |
| 753 | |
| 754 | function readConfigJs(): string | undefined { |
| 755 | const configJsPath = getConfigJsPath(); |
| 756 | |
| 757 | if (!fs.existsSync(configJsPath)) { |
| 758 | return undefined; |
| 759 | } |
| 760 | |
| 761 | return fs.readFileSync(configJsPath, "utf8"); |
| 762 | } |
| 763 | |
| 764 | async function buildConfigTsandReadConfigJs(ide: IDE, ideType: IdeType) { |
| 765 | const configTsPath = getConfigTsPath(); |
no test coverage detected