Skip to content

Commit 7dfef71

Browse files
committedMar 7, 2025·
refactor: deprecate transform option isolatedModules
Deprecate the option in favor of https://www.typescriptlang.org/tsconfig/#isolatedModules
1 parent 3ed6a4f commit 7dfef71

File tree

80 files changed

+348
-86
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+348
-86
lines changed
 

‎e2e/const-enum/jest-transpiler-cjs.config.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ export default {
66
[TS_JS_TRANSFORM_PATTERN]: [
77
'ts-jest',
88
{
9-
tsconfig: '<rootDir>/tsconfig-cjs.spec.json',
10-
isolatedModules: true,
9+
tsconfig: '<rootDir>/tsconfig-cjs-transpiler.spec.json',
1110
},
1211
],
1312
},

‎e2e/const-enum/jest-transpiler-esm.config.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ export default {
77
[TS_JS_TRANSFORM_PATTERN]: [
88
'ts-jest',
99
{
10-
tsconfig: '<rootDir>/tsconfig-esm.spec.json',
11-
isolatedModules: true,
10+
tsconfig: '<rootDir>/tsconfig-esm-transpiler.spec.json',
1211
useESM: true,
1312
},
1413
],

0 commit comments

Comments
 (0)
Please sign in to comment.