-
Notifications
You must be signed in to change notification settings - Fork 453
/
config-set.ts
868 lines (777 loc) · 24.3 KB
/
config-set.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
/**
* This is the core of settings and so ts-jest.
* Since configuration are used to create a good cache key, everything
* depending on it is here. Fast jest relies on correct cache keys
* depending on all settings that could affect the generated output.
*
* The big issue is that jest calls first `getCacheKey()` with stringified
* version of the `jest.ProjectConfig`, and then later it calls `process()`
* with the complete, object version of it.
*/
import { Config } from '@jest/types'
import { LogContexts, Logger } from 'bs-logger'
import { existsSync, readFileSync, realpathSync } from 'fs'
import json5 = require('json5')
import { dirname, extname, isAbsolute, join, normalize, resolve } from 'path'
import {
CompilerOptions,
CustomTransformers,
Diagnostic,
DiagnosticCategory,
FormatDiagnosticsHost,
ParsedCommandLine,
ScriptTarget,
SourceFile,
} from 'typescript'
import { digest as MY_DIGEST, version as MY_VERSION } from '..'
import { createCompilerInstance } from '../compiler/instance'
import { DEFAULT_JEST_TEST_MATCH } from '../constants'
import { internals as internalAstTransformers } from '../transformers'
import {
AstTransformerDesc,
BabelConfig,
BabelJestTransformer,
TsCompiler,
TsJestConfig,
TsJestGlobalOptions,
TsJestHooksMap,
TTypeScript,
} from '../types'
import { backportJestConfig } from '../util/backports'
import { getPackageVersion } from '../util/get-package-version'
import { importer } from '../util/importer'
import { stringify } from '../util/json'
import { JsonableValue } from '../util/jsonable-value'
import { rootLogger } from '../util/logger'
import { Memoize } from '../util/memoize'
import { Errors, ImportReasons, interpolate } from '../util/messages'
import { normalizeSlashes } from '../util/normalize-slashes'
import { sha1 } from '../util/sha1'
import { TSError } from '../util/ts-error'
const logger = rootLogger.child({ namespace: 'config' })
/**
* @internal
*/
// this regex MUST match nothing, it's the goal ;-)
export const MATCH_NOTHING = /a^/
/**
* @internal
*/
export const IGNORE_DIAGNOSTIC_CODES = [
6059, // "'rootDir' is expected to contain all source files."
18002, // "The 'files' list in config file is empty."
18003, // "No inputs were found in config file."
]
/**
* @internal
*/
export const TS_JEST_OUT_DIR = '$$ts-jest$$'
/**
* @internal
*/
// WARNING: DO NOT CHANGE THE ORDER OF CODE NAMES!
// ONLY APPEND IF YOU NEED TO ADD SOME
const enum DiagnosticCodes {
TsJest = 151000,
ConfigModuleOption,
}
const normalizeRegex = (pattern: string | RegExp | undefined): string | undefined =>
pattern ? (typeof pattern === 'string' ? pattern : pattern.source) : undefined
const toDiagnosticCode = (code: any): number | undefined =>
// eslint-disable-next-line @typescript-eslint/restrict-template-expressions
code ? parseInt(`${code}`.trim().replace(/^TS/, ''), 10) || undefined : undefined
const toDiagnosticCodeList = (items: any, into: number[] = []): number[] => {
if (!Array.isArray(items)) items = [items]
for (let item of items) {
if (!item) continue
if (Array.isArray(item)) {
toDiagnosticCodeList(item, into)
continue
} else if (typeof item === 'string') {
const children = item.trim().split(/\s*,\s*/g)
if (children.length > 1) {
toDiagnosticCodeList(children, into)
continue
}
item = children[0]
}
if (!item) continue
const code = toDiagnosticCode(item)
if (code && !into.includes(code)) into.push(code)
}
return into
}
export class ConfigSet {
/**
* @internal
*/
@Memoize()
get projectPackageJson(): Record<string, any> {
const {
tsJest: { packageJson },
} = this
if (packageJson && packageJson.kind === 'inline') {
return packageJson.value
}
if (packageJson && packageJson.kind === 'file' && packageJson.value) {
const path = this.resolvePath(packageJson.value)
if (existsSync(path)) {
return require(path)
}
this.logger.warn(Errors.UnableToFindProjectRoot)
return {}
}
const tsJestRoot = resolve(__dirname, '..', '..')
let pkgPath = resolve(tsJestRoot, '..', '..', 'package.json')
if (existsSync(pkgPath)) {
return require(pkgPath)
}
if (realpathSync(this.rootDir) === realpathSync(tsJestRoot)) {
pkgPath = resolve(tsJestRoot, 'package.json')
if (existsSync(pkgPath)) {
return require(pkgPath)
}
}
this.logger.warn(Errors.UnableToFindProjectRoot)
return {}
}
/**
* @internal
*/
@Memoize()
get projectDependencies(): Record<string, string> {
const { projectPackageJson: pkg } = this
const names = Object.keys({
...pkg.optionalDependencies,
...pkg.peerDependencies,
...pkg.devDependencies,
...pkg.dependencies,
})
return names.reduce((map, name) => {
const version = getPackageVersion(name)
if (version) map[name] = version
return map
}, {} as Record<string, string>)
}
/**
* @internal
*/
@Memoize()
get jest(): Config.ProjectConfig {
const config = backportJestConfig(this.logger, this._jestConfig)
if (this.parentOptions) {
const globals: any = config.globals ?? {}
// TODO: implement correct deep merging instead
globals['ts-jest'] = {
...this.parentOptions,
...globals['ts-jest'],
}
}
this.logger.debug({ jestConfig: config }, 'normalized jest config')
return config
}
/**
* @internal
*/
@Memoize()
get testMatchPatterns(): (string | RegExp)[] {
const matchablePatterns = [...this.jest.testMatch, ...this.jest.testRegex].filter(
(pattern) =>
/**
* jest config testRegex doesn't always deliver the correct RegExp object
* See https://github.com/facebook/jest/issues/9778
*/
pattern instanceof RegExp || typeof pattern === 'string',
)
if (!matchablePatterns.length) {
matchablePatterns.push(...DEFAULT_JEST_TEST_MATCH)
}
return matchablePatterns
}
/**
* @internal
*/
@Memoize()
get tsJest(): TsJestConfig {
const parsedConfig = this.jest
const { globals = {} } = parsedConfig as any
const options: TsJestGlobalOptions = { ...globals['ts-jest'] }
// tsconfig
const tsConfigOpt = options.tsConfig ?? options.tsconfig ?? true
let tsConfig: TsJestConfig['tsConfig']
if (typeof tsConfigOpt === 'string' || tsConfigOpt === true) {
tsConfig = {
kind: 'file',
value: typeof tsConfigOpt === 'string' ? this.resolvePath(tsConfigOpt) : undefined,
}
} else if (typeof tsConfigOpt === 'object') {
tsConfig = {
kind: 'inline',
value: tsConfigOpt,
}
}
// packageJson
const { packageJson: packageJsonOpt } = options
let packageJson: TsJestConfig['packageJson']
if (typeof packageJsonOpt === 'string' || packageJsonOpt == null || packageJsonOpt === true) {
packageJson = {
kind: 'file',
value: typeof packageJsonOpt === 'string' ? this.resolvePath(packageJsonOpt) : undefined,
}
} else if (typeof packageJsonOpt === 'object') {
packageJson = {
kind: 'inline',
value: packageJsonOpt,
}
}
// transformers
const transformers = (options.astTransformers || []).map((mod) => this.resolvePath(mod, { nodeResolve: true }))
// babel jest
const { babelConfig: babelConfigOpt } = options
let babelConfig: TsJestConfig['babelConfig']
if (typeof babelConfigOpt === 'string' || babelConfigOpt === true) {
babelConfig = {
kind: 'file',
value: babelConfigOpt === true ? undefined : this.resolvePath(babelConfigOpt as string),
}
} else if (babelConfigOpt) {
babelConfig = {
kind: 'inline',
value: babelConfigOpt,
}
}
// diagnostics
let diagnostics: TsJestConfig['diagnostics']
const { diagnostics: diagnosticsOpt = true } = options
// messy list of stuff to ignore (will be casted later)
const ignoreList: unknown[] = [IGNORE_DIAGNOSTIC_CODES, process.env.TS_JEST_IGNORE_DIAGNOSTICS]
if (diagnosticsOpt === true || diagnosticsOpt == null) {
diagnostics = { ignoreCodes: [], pretty: true, throws: true }
} else if (diagnosticsOpt === false) {
diagnostics = {
throws: false,
pretty: true,
ignoreCodes: [],
pathRegex: MATCH_NOTHING.source, // matches nothing
}
} else {
ignoreList.push(diagnosticsOpt.ignoreCodes)
diagnostics = {
pretty: diagnosticsOpt.pretty == null ? true : !!diagnosticsOpt.pretty,
ignoreCodes: [],
pathRegex: normalizeRegex(diagnosticsOpt.pathRegex),
throws: !diagnosticsOpt.warnOnly,
}
}
// now we clean and flatten the list
diagnostics.ignoreCodes = toDiagnosticCodeList(ignoreList)
// stringifyContentPathRegex option
const stringifyContentPathRegex = normalizeRegex(options.stringifyContentPathRegex)
// parsed options
const res: TsJestConfig = {
tsConfig,
packageJson,
babelConfig,
diagnostics,
isolatedModules: !!options.isolatedModules,
compiler: options.compiler ?? 'typescript',
transformers,
stringifyContentPathRegex,
}
this.logger.debug({ tsJestConfig: res }, 'normalized ts-jest config')
return res
}
/**
* @internal
*/
get parsedTsConfig(): ParsedCommandLine {
return this._parsedTsConfig
}
/**
* Use by e2e, don't mark as internal
*/
@Memoize()
get versions(): Record<string, string> {
const modules = ['jest', this.tsJest.compiler]
if (this.tsJest.babelConfig) {
modules.push('@babel/core', 'babel-jest')
}
return modules.reduce(
(map, name) => {
map[name] = getPackageVersion(name) ?? '-'
return map
},
{ 'ts-jest': MY_VERSION } as Record<string, string>,
)
}
/**
* @internal
*/
@Memoize()
private get _parsedTsConfig(): ParsedCommandLine {
const {
tsJest: { tsConfig },
} = this
const configFilePath = tsConfig && tsConfig.kind === 'file' ? tsConfig.value : undefined
const result = this.readTsConfig(
tsConfig && tsConfig.kind === 'inline' ? tsConfig.value : undefined,
configFilePath,
tsConfig == null,
)
// throw errors if any matching wanted diagnostics
this.raiseDiagnostics(result.errors, configFilePath)
this.logger.debug({ tsconfig: result }, 'normalized typescript config')
return result
}
/**
* @internal
*/
@Memoize()
get raiseDiagnostics(): (diagnostics: Diagnostic[], filePath?: string, logger?: Logger) => void | never {
const {
createTsError,
filterDiagnostics,
tsJest: {
diagnostics: { throws },
},
compilerModule: { DiagnosticCategory },
} = this
return (diagnostics: Diagnostic[], filePath?: string, logger: Logger = this.logger): void | never => {
const filteredDiagnostics = filterDiagnostics(diagnostics, filePath)
if (!filteredDiagnostics.length) return
const error = createTsError(filteredDiagnostics)
// only throw if `warnOnly` and it is a warning or error
const importantCategories = [DiagnosticCategory.Warning, DiagnosticCategory.Error]
if (throws && filteredDiagnostics.some((d) => importantCategories.includes(d.category))) {
throw error
}
logger.warn({ error }, error.message)
}
}
/**
* @internal
*/
@Memoize()
get babel(): BabelConfig | undefined {
const {
tsJest: { babelConfig },
} = this
if (babelConfig == null) {
this.logger.debug('babel is disabled')
return undefined
}
let base: BabelConfig = { cwd: this.cwd }
if (babelConfig.kind === 'file') {
if (babelConfig.value) {
if (extname(babelConfig.value) === '.js') {
base = {
...base,
...require(babelConfig.value),
}
} else {
base = {
...base,
...json5.parse(readFileSync(babelConfig.value, 'utf8')),
}
}
}
} else if (babelConfig.kind === 'inline') {
base = { ...base, ...babelConfig.value }
}
this.logger.debug({ babelConfig: base }, 'normalized babel config via ts-jest option')
return base
}
/**
* @internal
*/
@Memoize()
get compilerModule(): TTypeScript {
return importer.typescript(ImportReasons.TsJest, this.tsJest.compiler)
}
/**
* @internal
*/
@Memoize()
get babelJestTransformer(): BabelJestTransformer | undefined {
const { babel } = this
if (!babel) return undefined
this.logger.debug('creating babel-jest transformer')
return importer.babelJest(ImportReasons.BabelJest).createTransformer(babel) as BabelJestTransformer
}
@Memoize()
get tsCompiler(): TsCompiler {
return createCompilerInstance(this)
}
/**
* @internal
*/
@Memoize()
private get astTransformers(): AstTransformerDesc[] {
return [...internalAstTransformers, ...this.tsJest.transformers.map((m) => require(m))]
}
/**
* @internal
*/
@Memoize()
get tsCustomTransformers(): CustomTransformers {
return {
before: this.astTransformers.map((t) => t.factory(this)),
}
}
/**
* @internal
*/
@Memoize()
get hooks(): TsJestHooksMap {
let hooksFile = process.env.TS_JEST_HOOKS
if (hooksFile) {
hooksFile = resolve(this.cwd, hooksFile)
return importer.tryTheseOr(hooksFile, {})
}
return {}
}
/**
* @internal
*/
@Memoize()
get filterDiagnostics(): (diagnostics: Diagnostic[], filePath?: string) => Diagnostic[] {
const {
tsJest: {
diagnostics: { ignoreCodes },
},
shouldReportDiagnostic,
} = this
return (diagnostics: Diagnostic[], filePath?: string): Diagnostic[] => {
if (filePath && !shouldReportDiagnostic(filePath)) return []
return diagnostics.filter((diagnostic) => {
if (diagnostic.file?.fileName && !shouldReportDiagnostic(diagnostic.file.fileName)) {
return false
}
return !ignoreCodes.includes(diagnostic.code)
})
}
}
/**
* @internal
*/
@Memoize()
get shouldReportDiagnostic(): (filePath: string) => boolean {
const {
diagnostics: { pathRegex },
} = this.tsJest
if (pathRegex) {
const regex = new RegExp(pathRegex)
return (file: string): boolean => regex.test(file)
} else {
return (): true => true
}
}
/**
* @internal
*/
@Memoize()
get shouldStringifyContent(): (filePath: string) => boolean {
const { stringifyContentPathRegex } = this.tsJest
if (stringifyContentPathRegex) {
const regex = new RegExp(stringifyContentPathRegex)
return (file: string): boolean => regex.test(file)
} else {
return (): false => false
}
}
/**
* @internal
*/
@Memoize()
get createTsError(): (diagnostics: readonly Diagnostic[]) => TSError {
const {
diagnostics: { pretty },
} = this.tsJest
const formatDiagnostics = pretty
? this.compilerModule.formatDiagnosticsWithColorAndContext
: this.compilerModule.formatDiagnostics
const diagnosticHost: FormatDiagnosticsHost = {
getNewLine: () => '\n',
getCurrentDirectory: () => this.cwd,
getCanonicalFileName: (path: string) => path,
}
return (diagnostics: readonly Diagnostic[]): TSError => {
const diagnosticText = formatDiagnostics(diagnostics, diagnosticHost)
const diagnosticCodes = diagnostics.map((x) => x.code)
return new TSError(diagnosticText, diagnosticCodes)
}
}
/**
* @internal
*/
@Memoize()
get tsCacheDir(): string | undefined {
if (!this.jest.cache) {
logger.debug('file caching disabled')
return undefined
}
const cacheSuffix = sha1(
stringify({
version: this.compilerModule.version,
digest: this.tsJestDigest,
dependencies: this.projectDependencies,
compiler: this.tsJest.compiler,
compilerOptions: this.parsedTsConfig.options,
isolatedModules: this.tsJest.isolatedModules,
diagnostics: this.tsJest.diagnostics,
}),
)
const res = join(this.jest.cacheDirectory, 'ts-jest', cacheSuffix.substr(0, 2), cacheSuffix.substr(2))
logger.debug({ cacheDirectory: res }, 'will use file caching')
return res
}
/**
* @internal
*/
@Memoize()
private get overriddenCompilerOptions(): Partial<CompilerOptions> {
const options: Partial<CompilerOptions> = {
// we handle sourcemaps this way and not another
sourceMap: true,
inlineSourceMap: false,
inlineSources: true,
// we don't want to create declaration files
declaration: false,
noEmit: false, // set to true will make compiler API not emit any compiled results.
// else istanbul related will be dropped
removeComments: false,
// to clear out else it's buggy
out: undefined,
outFile: undefined,
composite: undefined, // see https://github.com/TypeStrong/ts-node/pull/657/files
declarationDir: undefined,
declarationMap: undefined,
emitDeclarationOnly: undefined,
sourceRoot: undefined,
tsBuildInfoFile: undefined,
}
// force the module kind if not piping babel-jest
if (!this.tsJest.babelConfig) {
// commonjs is required for jest
options.module = this.compilerModule.ModuleKind.CommonJS
}
return options
}
/**
* @internal
*/
@Memoize()
get rootDir(): string {
return normalize(this.jest.rootDir || this.cwd)
}
/**
* @internal
*/
@Memoize()
get cwd(): string {
return normalize(this.jest.cwd || process.cwd())
}
/**
* Use by e2e, don't mark as internal
*/
@Memoize()
// eslint-disable-next-line class-methods-use-this
get tsJestDigest(): string {
return MY_DIGEST
}
/**
* @internal
*/
@Memoize()
get jsonValue(): JsonableValue {
const jest = { ...this.jest }
const globals = (jest.globals = { ...jest.globals } as any)
// we need to remove some stuff from jest config
// this which does not depend on config
delete jest.name
delete jest.cacheDirectory
// we do not need this since its normalized version is in tsJest
delete globals['ts-jest']
return new JsonableValue({
versions: this.versions,
projectDepVersions: this.projectDependencies,
digest: this.tsJestDigest,
transformers: this.astTransformers.map((t) => `${t.name}@${t.version}`),
jest,
tsJest: this.tsJest,
babel: this.babel,
tsconfig: this.parsedTsConfig.options,
})
}
/**
* @internal
*/
get cacheKey(): string {
return this.jsonValue.serialized
}
readonly logger: Logger
/**
* @internal
*/
private readonly _jestConfig: Config.ProjectConfig
constructor(jestConfig: Config.ProjectConfig, readonly parentOptions?: TsJestGlobalOptions, parentLogger?: Logger) {
this._jestConfig = jestConfig
this.logger = parentLogger ? parentLogger.child({ [LogContexts.namespace]: 'config' }) : logger
}
/**
* @internal
*/
makeDiagnostic(
code: number,
messageText: string,
options: { category?: DiagnosticCategory; file?: SourceFile; start?: number; length?: number } = {},
): Diagnostic {
const { category = this.compilerModule.DiagnosticCategory.Warning, file, start, length } = options
return {
code,
messageText,
category,
file,
start,
length,
}
}
/**
* Load TypeScript configuration. Returns the parsed TypeScript config and
* any `tsConfig` options specified in ts-jest tsConfig
*
* @internal
*/
readTsConfig(
compilerOptions?: Record<string, unknown>,
resolvedConfigFile?: string | null,
noProject?: boolean | null,
): ParsedCommandLine {
let config = { compilerOptions: Object.create(null) }
let basePath = normalizeSlashes(this.rootDir)
let configFileName: string | undefined
const ts = this.compilerModule
if (!noProject) {
// Read project configuration when available.
configFileName = resolvedConfigFile
? normalizeSlashes(resolvedConfigFile)
: ts.findConfigFile(normalizeSlashes(this.rootDir), ts.sys.fileExists)
if (configFileName) {
this.logger.debug({ tsConfigFileName: configFileName }, 'readTsConfig(): reading', configFileName)
const result = ts.readConfigFile(configFileName, ts.sys.readFile)
// Return diagnostics.
if (result.error) {
return { errors: [result.error], fileNames: [], options: {} }
}
config = result.config
basePath = normalizeSlashes(dirname(configFileName))
}
}
// Override default configuration options `ts-jest` requires.
config.compilerOptions = {
...config.compilerOptions,
...compilerOptions,
}
// parse json, merge config extending others, ...
const result = ts.parseJsonConfigFileContent(config, ts.sys, basePath, undefined, configFileName)
const { overriddenCompilerOptions: forcedOptions } = this
const finalOptions = result.options
// Target ES5 output by default (instead of ES3).
if (finalOptions.target === undefined) {
finalOptions.target = ts.ScriptTarget.ES5
}
// check the module interoperability
const target = finalOptions.target
// compute the default if not set
const defaultModule = [ts.ScriptTarget.ES3, ts.ScriptTarget.ES5].includes(target)
? ts.ModuleKind.CommonJS
: ts.ModuleKind.ESNext
const moduleValue = finalOptions.module == null ? defaultModule : finalOptions.module
if (
'module' in forcedOptions &&
moduleValue !== forcedOptions.module &&
!(finalOptions.esModuleInterop || finalOptions.allowSyntheticDefaultImports)
) {
result.errors.push(
this.makeDiagnostic(DiagnosticCodes.ConfigModuleOption, Errors.ConfigNoModuleInterop, {
category: ts.DiagnosticCategory.Message,
}),
)
// at least enable synthetic default imports (except if it's set in the input config)
if (!('allowSyntheticDefaultImports' in config.compilerOptions)) {
finalOptions.allowSyntheticDefaultImports = true
}
}
// Make sure when allowJs is enabled, outDir is required to have when using allowJs: true
if (finalOptions.allowJs && !finalOptions.outDir) {
finalOptions.outDir = TS_JEST_OUT_DIR
}
// ensure undefined are removed and other values are overridden
for (const key of Object.keys(forcedOptions)) {
const val = forcedOptions[key]
if (val === undefined) {
delete finalOptions[key]
} else {
finalOptions[key] = val
}
}
/**
* See https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping
* Every time this page is updated, we also need to update here. Here we only show warning message for Node LTS versions
*/
const nodeJsVer = process.version
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
const compilationTarget = result.options.target!
if (
(nodeJsVer.startsWith('v10') && compilationTarget > ScriptTarget.ES2018) ||
(nodeJsVer.startsWith('v12') && compilationTarget > ScriptTarget.ES2019)
) {
const message = interpolate(Errors.MismatchNodeTargetMapping, {
nodeJsVer: process.version,
compilationTarget: config.compilerOptions.target,
})
logger.warn(message)
}
return result
}
/**
* @internal
*/
resolvePath(
inputPath: string,
{ throwIfMissing = true, nodeResolve = false }: { throwIfMissing?: boolean; nodeResolve?: boolean } = {},
): string {
let path: string = inputPath
let nodeResolved = false
if (path.startsWith('<rootDir>')) {
path = resolve(join(this.rootDir, path.substr(9)))
} else if (!isAbsolute(path)) {
if (!path.startsWith('.') && nodeResolve) {
try {
path = require.resolve(path)
nodeResolved = true
} catch (_) {}
}
if (!nodeResolved) {
path = resolve(this.cwd, path)
}
}
if (!nodeResolved && nodeResolve) {
try {
path = require.resolve(path)
nodeResolved = true
} catch (_) {}
}
if (throwIfMissing && !existsSync(path)) {
throw new Error(interpolate(Errors.FileNotFound, { inputPath, resolvedPath: path }))
}
this.logger.debug({ fromPath: inputPath, toPath: path }, 'resolved path from', inputPath, 'to', path)
return path
}
/**
* @internal
*/
toJSON(): any {
return this.jsonValue.value
}
}