From b7cf9949bf8ed4bdc3efce732a379de23700dd5f Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Fri, 28 Jul 2017 01:27:21 +0200 Subject: [PATCH] update docs --- docs/config.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/config.md b/docs/config.md index 561fef3..ea39824 100644 --- a/docs/config.md +++ b/docs/config.md @@ -39,11 +39,12 @@ with default behaviour. | key | default value | description | | --- | --- | --- | -| `"mode"` | `"default"` | "default" will do default stuff and override , "custom" only does what you specify | +| `"mode"` | `"default"` | "default" will do default stuff and override , "custom" only does what you specify, "merge" will merge default options with whatever you specify on your own | | `"test"` | `true` | test your module | | `"ts"` | `{"./ts/*.ts":"./","./test/test.ts":"./test/"}` | allows you to define multiple ts portions | | `"tsOptions"` | `{"target":"ES5", "declaration":"true"}` | specify options for tsc | -| `"cli"` | "false" | some modules are designed to be used from cli. If set to true NPMTS will create a cli.js that wires you dist files up for cli use. | +| `"cli"` | `"false"` | some modules are designed to be used from cli. If set to true NPMTS will create a cli.js that wires you dist files up for cli use. | +| `"testConfig"` | `{ parallel: true, coverage: true }` | allows you to control test behaviour. `"parallel"` controls wether testfiles are run sequentially or in parallel, and `"coverage` wether to create coverage reports | ### TypeScript by default npmts looks for `./ts/*.ts` and `./test/test.ts` that will compile to