Skip to content

Commit f372121

Browse files
committed
feat: support hybrid module values for isolatedModules: true
1 parent 273dba1 commit f372121

11 files changed

+719
-27
lines changed

jest-src.config.ts jest.config.ts

File renamed without changes.

package-lock.json

+176
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"version": "29.2.6",
44
"main": "dist/index.js",
55
"types": "dist/index.d.ts",
6+
"type": "commonjs",
67
"bin": {
78
"ts-jest": "cli.js"
89
},
@@ -11,7 +12,7 @@
1112
"prebuild": "rimraf --glob dist coverage *.tgz",
1213
"build": "tsc -p tsconfig.build.json",
1314
"postbuild": "node scripts/post-build.js",
14-
"test": "jest -c=jest-src.config.ts",
15+
"test": "jest -c=jest.config.ts",
1516
"test-e2e-cjs": "jest -c=jest-e2e.config.cjs --no-cache",
1617
"test-e2e-esm": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js -c=jest-e2e.config.mjs --no-cache",
1718
"test-examples": "node scripts/test-examples.js",
@@ -128,6 +129,7 @@
128129
"jest": "^29.7.0",
129130
"js-yaml": "^4.1.0",
130131
"lint-staged": "^15.5.0",
132+
"memfs": "^4.17.0",
131133
"prettier": "^2.8.8",
132134
"rimraf": "^5.0.10",
133135
"typescript": "~5.5.4",

src/__helpers__/workspace-root.ts

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import fs from 'node:fs'
2+
import path from 'node:path'
3+
4+
function workspaceRootInner(dir: string, candidateRoot: string) {
5+
if (path.dirname(dir) === dir) return candidateRoot
6+
7+
const matchablePaths = [path.join(dir, '.ts-jest-digest'), path.join(dir, '.github'), path.join(dir, 'renovate.json')]
8+
if (matchablePaths.some((x) => fs.existsSync(x))) {
9+
return dir
10+
}
11+
12+
return workspaceRootInner(path.dirname(dir), candidateRoot)
13+
}
14+
15+
export const workspaceRoot = workspaceRootInner(process.cwd(), process.cwd())

src/legacy/compiler/__snapshots__/ts-compiler.spec.ts.snap

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`TsCompiler getCompiledOutput isolatedModules true should transpile code with config {"babelConfig": false, "supportsStaticESM": false, "useESM": true} 1`] = `
3+
exports[`TsCompiler getCompiledOutput isolatedModules true should transpile code with config {"babelConfig": false, "module": "CommonJS", "supportsStaticESM": false, "useESM": true} 1`] = `
44
{
55
"allowSyntheticDefaultImports": undefined,
66
"customConditions": undefined,
@@ -9,7 +9,7 @@ exports[`TsCompiler getCompiledOutput isolatedModules true should transpile code
99
}
1010
`;
1111

12-
exports[`TsCompiler getCompiledOutput isolatedModules true should transpile code with config {"babelConfig": false, "supportsStaticESM": true, "useESM": false} 1`] = `
12+
exports[`TsCompiler getCompiledOutput isolatedModules true should transpile code with config {"babelConfig": false, "module": "CommonJS", "supportsStaticESM": true, "useESM": false} 1`] = `
1313
{
1414
"allowSyntheticDefaultImports": undefined,
1515
"customConditions": undefined,
@@ -18,7 +18,7 @@ exports[`TsCompiler getCompiledOutput isolatedModules true should transpile code
1818
}
1919
`;
2020

21-
exports[`TsCompiler getCompiledOutput isolatedModules true should transpile code with config {"babelConfig": false, "supportsStaticESM": true, "useESM": true} 1`] = `
21+
exports[`TsCompiler getCompiledOutput isolatedModules true should transpile code with config {"babelConfig": false, "module": "ESNext", "supportsStaticESM": true, "useESM": true} 1`] = `
2222
{
2323
"allowSyntheticDefaultImports": undefined,
2424
"customConditions": undefined,
@@ -27,7 +27,7 @@ exports[`TsCompiler getCompiledOutput isolatedModules true should transpile code
2727
}
2828
`;
2929

30-
exports[`TsCompiler getCompiledOutput isolatedModules true should transpile code with config {"babelConfig": true, "supportsStaticESM": false, "useESM": true} 1`] = `
30+
exports[`TsCompiler getCompiledOutput isolatedModules true should transpile code with config {"babelConfig": true, "module": "CommonJS", "supportsStaticESM": false, "useESM": true} 1`] = `
3131
{
3232
"allowSyntheticDefaultImports": undefined,
3333
"customConditions": undefined,

0 commit comments

Comments
 (0)