(path: string, data: unknown)
| 23 | } satisfies Config; |
| 24 | |
| 25 | const writeJsonFile = (path: string, data: unknown) => { |
| 26 | writeFileSync(path, JSON.stringify(data, null, 2)); |
| 27 | }; |
| 28 | |
| 29 | function ensureGlobal() { |
| 30 | if (!existsSync(GLOBAL_CONFIG_PATH)) { |
no outgoing calls
no test coverage detected