From 7c97267f68c06b0357223e83a5ab1d90d1372fbd Mon Sep 17 00:00:00 2001 From: Ahn Date: Wed, 18 Mar 2020 16:33:51 +0100 Subject: [PATCH] docs: update ts-jest config options with compilerHost and incremental (#1432) --- docs/user/config/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/user/config/index.md b/docs/user/config/index.md index c7ee515358..cd93769a70 100644 --- a/docs/user/config/index.md +++ b/docs/user/config/index.md @@ -190,6 +190,8 @@ All options have default values which should fit most of the projects. Click on | [**`compiler`**][compiler] | [TypeScript module to use as compiler.][compiler] | `string` | `"typescript"` | | [**`tsConfig`**][tsConfig] | [TypeScript compiler related configuration.][tsConfig] | `string`\|`object`\|`boolean` | _auto_ | | [**`isolatedModules`**][isolatedModules] | [Disable type-checking][isolatedModules] | `boolean` | `false` | +| [**`compilerHost`**][compilerHost] | [Use TypeScript Compiler API][compilerHost] | `boolean` | `false` | +| [**`incremental (use with `compilerHost`)`**][compilerHost] | [Use TypeScript Incremental Program][compilerHost] | `boolean` | `true` | | [**`diagnostics`**][diagnostics] | [Diagnostics related configuration.][diagnostics] | `boolean`\|`object` | `true` | | [**`babelConfig`**][babelConfig] | [Babel(Jest) related configuration.][babelConfig] | `boolean`\|`object` | _disabled_ | | [**`stringifyContentPathRegex`**][stringifyContentPathRegex] | [Files which will become modules returning self content.][stringifyContentPathRegex] | `string`\|`RegExp` | _disabled_ |