@launchql/env
Version:
LaunchQL environment management
19 lines (12 loc) • 505 B
Markdown
Environment management for LaunchQL projects. Provides unified configuration resolution from defaults, config files, environment variables, and overrides.
- Config file discovery using `walkUp` utility
- Environment variable parsing
- Unified merge hierarchy: defaults → config → env vars → overrides
- TypeScript support with full type safety
```typescript
import { getEnvOptions } from '@launchql/env';
const options = getEnvOptions(overrides, cwd);
```