You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rewrite "include" patterns in tsconfig files that fall outside the sandbox.
For example:
```json
{
include: ['./**/*', '../../node_modules/self-service-server/lib/main/shared/@types/**/*.d.ts'],
}
```
Becomes:
```json
{
include: ['./**/*', '../../../../node_modules/self-service-server/lib/main/shared/@types/**/*.d.ts'],
}
```
Same is true for `files` and `exclude`.
Fixes#3281
Rewrite "include" patterns in tsconfig files that fall outside the sandbox.
For example:
```json
{
include: ['./**/*', '../../node_modules/self-service-server/lib/main/shared/@types/**/*.d.ts'],
}
```
Becomes:
```json
{
include: ['./**/*', '../../../../node_modules/self-service-server/lib/main/shared/@types/**/*.d.ts'],
}
```
Same is true for `files` and `exclude`.
Fixes#3281
Currently we are referencing d.ts types from a shared library in our local projects like here:
When copying these files into the sandbox, the paths are not altered, so that they point to non-existent subdirectories and
tsc -b
is failing.As a workaround, we added them like this:
Please alter paths and add additional
../../
to the entries. This might also make sense for other directives (typeRoots, excludes, ...).Stryker config
Test runner config
.mocharc.js
Stryker environment
Test runner environment
yarn run mocha --exit 'src/**/*Spec.ts'
Your Environment
The text was updated successfully, but these errors were encountered: