# extconfig

> The extended config loader.

Latest version **0.1.1** (published 2015-09-09) · 0 weekly downloads

## Install

```sh
npm install extconfig
pnpm add extconfig
yarn add extconfig
bun add extconfig
```

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; pre 1.0.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 0.1.1 |
| Published | 2015-09-09 |
| First published | 2015-09-09 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Anton Demchenko |
| Maintainers | n9niwas |

## Links

- npm: https://www.npmjs.com/package/extconfig
- Repository: https://github.com/n9niwas/extconfig
- Homepage: https://github.com/n9niwas/extconfig#readme
- Issues: https://github.com/n9niwas/extconfig/issues
- npm.io page: https://npm.io/package/extconfig

## Dependencies (1)

- [extend](https://npm.io/package/extend.md) 3.0.0

## Recent versions

- 0.1.1 (latest) — 2015-09-09
- 0.1.0 — 2015-09-09

## README

The extended config parser and loader.
=========

Currently supports inline replacement for the config properties.

Example:
```
{
  "workingDir": "./wwwroot",
  "distDir": "$(workingDir)/dist",
  "scripts": {
    "src": [ "$(workingDir)/app/**/*.ts", "$(workingDir)/typings/tsd.d.ts" ],
    "tsConfig": "$(workingDir)/tsconfig.json"
  }
}
```
translates into
```
{
  "workingDir": "./wwwroot",
  "distDir": "./wwwroot/dist",
  "scripts": {
    "src": [ "./wwwroot/app/**/*.ts", "./wwwroot/typings/tsd.d.ts" ],
    "tsConfig": "./wwwroot/tsconfig.json"
  }
}
```

---
_Source: https://npm.io/package/extconfig · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
