@d-es-ign/stryker-js-api 9.6.0 → 9.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/core.d.ts +1 -1
- package/package.json +1 -1
- package/src-generated/stryker-core.ts +2 -2
package/README.md
CHANGED
|
@@ -5,6 +5,13 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
# StrykerJS API
|
|
8
|
+
|
|
9
|
+
> **Fork notice**
|
|
10
|
+
>
|
|
11
|
+
> This project is a fork of the corresponding `@stryker-mutator` package/repository.
|
|
12
|
+
> Maintenance here is intentionally limited, and this fork only exists while
|
|
13
|
+
> https://github.com/stryker-mutator/stryker-js/pull/5866 has not been accepted and implemented.
|
|
14
|
+
|
|
8
15
|
This is the repository for maintaining the API of the [StrykerJS](https://stryker-mutator.io/) mutation testing framework.
|
|
9
16
|
Plugin creators should depend on this API rather than on the main Stryker repository directly.
|
|
10
17
|
|
package/core.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
// This file is here to make `--moduleResolution node` work with:
|
|
2
|
-
// /** @type {import('@stryker-
|
|
2
|
+
// /** @type {import('@d-es-ign/stryker-js-api/core').PartialStrykerOptions} */
|
|
3
3
|
export type * from './dist/src/core/index.js';
|
package/package.json
CHANGED
|
@@ -95,7 +95,7 @@ export interface StrykerOptions {
|
|
|
95
95
|
*/
|
|
96
96
|
packageManager?: 'npm' | 'yarn' | 'pnpm';
|
|
97
97
|
/**
|
|
98
|
-
* With 'plugins', you can add additional Node modules for Stryker to load (or require). By default, all node_modules starting with @stryker-
|
|
98
|
+
* With 'plugins', you can add additional Node modules for Stryker to load (or require). By default, all node_modules starting with @d-es-ign/stryker-js-* will be loaded, so you would normally not need to specify this option. These modules should be installed right next to stryker. For a current list of plugins, you can consult 'npm' or 'stryker-mutator.io.'
|
|
99
99
|
*/
|
|
100
100
|
plugins: string[];
|
|
101
101
|
/**
|
|
@@ -149,7 +149,7 @@ export interface StrykerOptions {
|
|
|
149
149
|
*/
|
|
150
150
|
dryRunTimeoutMinutes: number;
|
|
151
151
|
/**
|
|
152
|
-
* Configure the (root) tsconfig file for typescript projects. This will allow Stryker to rewrite the `extends` and `references` settings in this and related tsconfig files in your sandbox. Defaults to `tsconfig.json`. This setting is also used when you enable the `@stryker-
|
|
152
|
+
* Configure the (root) tsconfig file for typescript projects. This will allow Stryker to rewrite the `extends` and `references` settings in this and related tsconfig files in your sandbox. Defaults to `tsconfig.json`. This setting is also used when you enable the `@d-es-ign/stryker-js-typescript-checker plugin
|
|
153
153
|
*/
|
|
154
154
|
tsconfigFile: string;
|
|
155
155
|
/**
|