()
| 21 | export const TELEMETRY_NOTICE_VERSION = 1 |
| 22 | |
| 23 | function createDefaultTelemetryConfig(): TelemetryConfig { |
| 24 | return { |
| 25 | distinctId: randomUUID(), |
| 26 | enabled: true, |
| 27 | noticeVersion: 0, |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | function getHomeDirectory() { |
| 32 | return process.env.HOME || homedir() |
no outgoing calls
no test coverage detected