Skip to content

Commit f64377f

Browse files
committed
feat: rewrite, speed up by using eslint-import-resolver-oxc under the hood
1 parent c4c99b4 commit f64377f

26 files changed

+2054
-1984
lines changed

.eslintrc

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"node": true
55
},
66
"parserOptions": {
7+
"sourceType": "module",
78
"ecmaVersion": "latest"
89
},
910
"extends": [

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18.20.6
1+
18.20.7

package.json

+12-14
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
],
1111
"funding": "https://opencollective.com/unts/projects/eslint-import-resolver-ts",
1212
"license": "ISC",
13-
"packageManager": "yarn@4.0.2",
13+
"packageManager": "yarn@4.7.0",
1414
"engines": {
1515
"node": "^14.18.0 || >=16.0.0"
1616
},
@@ -19,15 +19,11 @@
1919
"exports": {
2020
".": {
2121
"types": "./lib/index.d.ts",
22-
"es2020": "./lib/index.es2020.mjs",
23-
"fesm2020": "./lib/index.es2020.mjs",
2422
"import": "./lib/index.js",
2523
"require": "./lib/index.cjs"
2624
},
2725
"./package.json": "./package.json"
2826
},
29-
"es2020": "lib/index.es2020.mjs",
30-
"fesm2020": "lib/index.es2020.mjs",
3127
"types": "lib/index.d.ts",
3228
"files": [
3329
"lib",
@@ -48,13 +44,13 @@
4844
"lint": "run-p 'lint:*'",
4945
"lint:es": "eslint src --cache -f friendly",
5046
"lint:tsc": "tsc --noEmit",
51-
"prepare": "simple-git-hooks",
47+
"prepare": "patch-package && simple-git-hooks",
5248
"release": "changeset publish",
5349
"test": "run-p 'test:*'",
5450
"test:dotInclude": "eslint --ext ts,tsx tests/dotInclude --ignore-pattern \"!.dot\"",
5551
"test:dotPaths": "eslint --ext ts,tsx tests/dotPaths --ignore-pattern \"!.dot\"",
5652
"test:dotProject": "eslint --ext ts,tsx tests/dotProject --ignore-pattern \"!.dot\"",
57-
"test:importXResolverV3": "eslint --config=tests/importXResolverV3/eslint.config.js tests/importXResolverV3",
53+
"test:importXResolverV3": "cross-env ESLINT_USE_FLAT_CONFIG=true eslint --config=tests/importXResolverV3/eslint.config.js tests/importXResolverV3",
5854
"test:multipleEslintrcs": "eslint --ext ts,tsx tests/multipleEslintrcs",
5955
"test:multipleTsconfigs": "eslint --ext ts,tsx tests/multipleTsconfigs",
6056
"test:withJsExtension": "node tests/withJsExtension/test.js && eslint --ext ts,tsx tests/withJsExtension",
@@ -68,7 +64,8 @@
6864
"peerDependencies": {
6965
"eslint": "*",
7066
"eslint-plugin-import": "*",
71-
"eslint-plugin-import-x": "*"
67+
"eslint-plugin-import-x": "*",
68+
"oxc-resolver": "^4.0.0 || ^5.0.0"
7269
},
7370
"peerDependenciesMeta": {
7471
"eslint-plugin-import": {
@@ -80,12 +77,10 @@
8077
},
8178
"dependencies": {
8279
"@nolyfill/is-core-module": "1.0.39",
80+
"@pkgr/core": "^0.1.1",
8381
"debug": "^4.3.7",
84-
"enhanced-resolve": "^5.15.0",
85-
"get-tsconfig": "^4.10.0",
86-
"is-bun-module": "^1.0.2",
87-
"stable-hash": "^0.0.4",
88-
"tinyglobby": "^0.2.12"
82+
"eslint-import-resolver-oxc": "^0.12.0",
83+
"is-bun-module": "^1.0.2"
8984
},
9085
"devDependencies": {
9186
"@1stg/eslint-config": "7.0.1",
@@ -98,20 +93,23 @@
9893
"@types/debug": "^4.1.12",
9994
"@types/node": "^18.19.78",
10095
"@types/unist": "^2.0.11",
96+
"@unts/patch-package": "^8.1.1",
97+
"cross-env": "^7.0.3",
10198
"dummy.js": "link:dummy.js",
10299
"eslint": "^8.57.1",
103100
"eslint-import-resolver-typescript": "link:.",
104101
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
105102
"eslint-plugin-import-x": "^4.5.0",
106103
"lint-staged": "^13.3.0",
107104
"npm-run-all2": "^5.0.2",
105+
"oxc-resolver": "^4.0.0",
108106
"prettier": "^2.8.8",
109107
"react": "^18.3.1",
110108
"simple-git-hooks": "^2.11.1",
111109
"size-limit": "^11.0.0",
112110
"size-limit-preset-node-lib": "^0.3.0",
113111
"type-coverage": "^2.27.0",
114-
"typescript": "^5.3.2"
112+
"typescript": "~5.1.0"
115113
},
116114
"resolutions": {
117115
"eslint-import-resolver-typescript": "link:.",
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
diff --git a/node_modules/@1stg/eslint-config/overrides.js b/node_modules/@1stg/eslint-config/overrides.js
2+
index 3c54ff2..d8aa880 100644
3+
--- a/node_modules/@1stg/eslint-config/overrides.js
4+
+++ b/node_modules/@1stg/eslint-config/overrides.js
5+
@@ -88,7 +88,7 @@ const resolveSettings = {
6+
'import/resolver': {
7+
typescript: {
8+
alwaysTryTypes: true,
9+
- project,
10+
+ tsconfig: { configFile: project },
11+
},
12+
},
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
diff --git a/node_modules/eslint-import-resolver-oxc/dist/index.d.ts b/node_modules/eslint-import-resolver-oxc/dist/index.d.ts
2+
index 48e6c28..d085c3d 100644
3+
--- a/node_modules/eslint-import-resolver-oxc/dist/index.d.ts
4+
+++ b/node_modules/eslint-import-resolver-oxc/dist/index.d.ts
5+
@@ -38,7 +38,7 @@ type BundlerOption<T extends SupportedBundler = SupportedBundler> = { [K in Supp
6+
path?: string
7+
options?: BundlerTransformerOptions[K]
8+
} }[T];
9+
-interface OxcResolverOptions extends NapiResolveOptions {
10+
+export interface OxcResolverOptions extends NapiResolveOptions {
11+
/** @experimental detect bundler's resolve config */
12+
bundlerConfig?: string | BundlerOption;
13+
}

src/constants.ts

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
export const defaultConditionNames = [
2+
'types',
3+
'import',
4+
5+
// APF: https://angular.io/guide/angular-package-format
6+
'esm2020',
7+
'es2020',
8+
'es2015',
9+
10+
'require',
11+
'node',
12+
'node-addons',
13+
'browser',
14+
'default',
15+
]
16+
17+
/**
18+
* `.mts`, `.cts`, `.d.mts`, `.d.cts`, `.mjs`, `.cjs` are not included because `.cjs` and `.mjs` must be used explicitly
19+
*/
20+
export const defaultExtensions = [
21+
'.ts',
22+
'.tsx',
23+
'.d.ts',
24+
'.js',
25+
'.jsx',
26+
'.json',
27+
'.node',
28+
]
29+
30+
export const defaultExtensionAlias = {
31+
'.js': [
32+
'.ts',
33+
// `.tsx` can also be compiled as `.js`
34+
'.tsx',
35+
'.d.ts',
36+
'.js',
37+
],
38+
'.jsx': ['.tsx', '.d.ts', '.jsx'],
39+
'.cjs': ['.cts', '.d.cts', '.cjs'],
40+
'.mjs': ['.mts', '.d.mts', '.mjs'],
41+
}
42+
43+
export const defaultMainFields = [
44+
'types',
45+
'typings',
46+
47+
// APF: https://angular.io/guide/angular-package-format
48+
'fesm2020',
49+
'fesm2015',
50+
'esm2020',
51+
'es2020',
52+
53+
'module',
54+
'jsnext:main',
55+
56+
'main',
57+
]
58+
59+
export const JS_EXT_PATTERN = /\.(?:[cm]js|jsx?)$/
60+
61+
export const IMPORT_RESOLVER_NAME = 'eslint-import-resolver-typescript'
62+
63+
export const interfaceVersion = 2

src/helpers.ts

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/**
2+
* For a scoped package, we must look in `@types/foo__bar` instead of `@types/@foo/bar`.
3+
*/
4+
export function mangleScopedPackage(moduleName: string) {
5+
if (moduleName.startsWith('@')) {
6+
const replaceSlash = moduleName.replace('/', '__')
7+
if (replaceSlash !== moduleName) {
8+
return replaceSlash.slice(1) // Take off the "@"
9+
}
10+
}
11+
return moduleName
12+
}
13+
14+
/** Remove any trailing querystring from module id. */
15+
export function removeQuerystring(id: string) {
16+
const querystringIndex = id.lastIndexOf('?')
17+
if (querystringIndex >= 0) {
18+
return id.slice(0, querystringIndex)
19+
}
20+
return id
21+
}

0 commit comments

Comments
 (0)