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
Copy file name to clipboardExpand all lines: src/util/messages.ts
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,6 @@ export const enum Errors {
12
12
UnableToCompileTypeScript='{{diagnostics}}',
13
13
NotMappingMultiStarPath='Not mapping "{{path}}" because it has more than one star (`*`).',
14
14
NotMappingPathWithEmptyMap='Not mapping "{{path}}" because it has no target.',
15
-
MappingOnlyFirstTargetOfPath='Mapping only to first target of "{{path}}" because it has more than one ({{count}}).',
16
15
GotJsFileButAllowJsFalse='Got a `.js` file to compile while `allowJs` option is not set to `true` (file: {{path}}). To fix this:\n - if you want TypeScript to process JS files, set `allowJs` to `true` in your TypeScript config (usually tsconfig.json)\n - if you do not want TypeScript to process your `.js` files, in your Jest config change the `transform` key which value is `ts-jest` so that it does not match `.js` files anymore',
17
16
GotUnknownFileTypeWithoutBabel='Got a unknown file type to compile (file: {{path}}). To fix this, in your Jest config change the `transform` key which value is `ts-jest` so that it does not match this kind of files anymore.',
18
17
GotUnknownFileTypeWithBabel='Got a unknown file type to compile (file: {{path}}). To fix this, in your Jest config change the `transform` key which value is `ts-jest` so that it does not match this kind of files anymore. If you still want Babel to process it, add another entry to the `transform` option with value `babel-jest` which key matches this type of files.',
0 commit comments