Skip to content
This repository was archived by the owner on May 12, 2022. It is now read-only.

Commit a07f1b8

Browse files
committed
feat: support tsconfig-paths
1 parent e240bd0 commit a07f1b8

File tree

9 files changed

+174
-16
lines changed

9 files changed

+174
-16
lines changed

loader.mjs

Lines changed: 39 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
import { URL, pathToFileURL, fileURLToPath } from 'url'
22
import fs from 'fs'
33
import { transformSync } from 'esbuild'
4+
import { createMatchPath, loadConfig } from 'tsconfig-paths'
45

56
const baseURL = pathToFileURL(`${process.cwd()}/`).href
67
const isWindows = process.platform === 'win32'
78

8-
const extensionsRegex = /\.(tsx?|json)$/
9+
const extensionsRegex = /\.(m?tsx?|json)$/
910
const excludeRegex = /^\w+:/
11+
const tsExtensions = ['.ts', '.mts', '.cts', '.tsx'] // https://www.typescriptlang.org/docs/handbook/release-notes/typescript-4-5.html
12+
const jsExtensions = ['.js', '.cjs', '.mjs', '.jsx']
13+
const extensions = [...tsExtensions, ...jsExtensions]
14+
15+
const tsconfig = loadConfig()
16+
17+
const matchPath = tsconfig.resultType === 'success' ? createMatchPath(tsconfig.absoluteBaseUrl, tsconfig.paths) : undefined
1018

1119
function esbuildTransformSync(rawSource, filename, url, format) {
1220
const {
@@ -31,7 +39,29 @@ function esbuildTransformSync(rawSource, filename, url, format) {
3139
return { js, jsSourceMap }
3240
}
3341

42+
export const tryPathWithExtensions = (path) => {
43+
for (const ext of extensions) {
44+
const p = `${path}${ext}`
45+
if (fs.existsSync(p))
46+
return p
47+
}
48+
return null
49+
}
50+
3451
export function resolve(specifier, context, defaultResolve) {
52+
// baseUrl & paths takes the highest precedence, as TypeScript behaves.
53+
if (matchPath) {
54+
const nodePath = matchPath(specifier, undefined, undefined, extensions)
55+
56+
if (nodePath) {
57+
const foundPath = tryPathWithExtensions(nodePath)
58+
return {
59+
url: pathToFileURL(foundPath).href,
60+
format: extensionsRegex.test(foundPath) && 'module',
61+
}
62+
}
63+
}
64+
3565
const { parentURL = baseURL } = context
3666
const url = new URL(specifier, parentURL)
3767
if (extensionsRegex.test(url.pathname))
@@ -40,15 +70,14 @@ export function resolve(specifier, context, defaultResolve) {
4070
// ignore `data:` and `node:` prefix etc.
4171
if (!excludeRegex.test(specifier)) {
4272
// Try to resolve extension
43-
const pathname = url.pathname
44-
for (const ext of ['ts', 'tsx']) {
45-
url.pathname = `${pathname}.${ext}`
46-
const path = fileURLToPath(url.href)
47-
if (fs.existsSync(path))
48-
return {
49-
url: url.href,
50-
format: extensionsRegex.test(url.pathname) && 'module',
51-
}
73+
const path = fileURLToPath(url.href)
74+
const foundPath = tryPathWithExtensions(path)
75+
if (foundPath) {
76+
url.pathname = foundPath
77+
return {
78+
url: url.href,
79+
format: extensionsRegex.test(url.pathname) && 'module',
80+
}
5281
}
5382
}
5483

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@
3333
"test": "node --experimental-loader ./loader.mjs test/entry.ts"
3434
},
3535
"dependencies": {
36-
"esbuild": "^0.13.3"
36+
"esbuild": "^0.13.3",
37+
"tsconfig-paths": "^3.11.0"
3738
},
3839
"devDependencies": {
3940
"@antfu/eslint-config": "^0.9.0",

pnpm-lock.yaml

Lines changed: 2 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/entry.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,4 +107,15 @@ test('import json', async() => {
107107
assert(stdout === 'esbuild-node-loader')
108108
})
109109

110+
test('tsconfig-paths', async() => {
111+
const { stdout } = await execa('node', [
112+
'--experimental-loader',
113+
`${cwd}/loader.mjs`,
114+
`${cwd}/test/tsconfig-paths/src/utils/fixture.ts`,
115+
], {
116+
cwd: `${cwd}/test/tsconfig-paths`,
117+
})
118+
assert.equal(stdout, 'foo\nfoo')
119+
})
120+
110121
test.run()

test/tsconfig-paths/node_modules/@apis/foo.ts

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export const foo = () => {
2+
console.info('foo')
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export const index = () => {
2+
console.info('index')
3+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { foo as foo2 } from 'src/apis/foo'
2+
import { foo } from '@apis/foo'
3+
4+
foo()
5+
foo2()

test/tsconfig-paths/tsconfig.json

Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
{
2+
"compilerOptions": {
3+
/* Visit https://aka.ms/tsconfig.json to read more about this file */
4+
5+
/* Projects */
6+
// "incremental": true, /* Enable incremental compilation */
7+
// "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */
8+
// "tsBuildInfoFile": "./", /* Specify the folder for .tsbuildinfo incremental compilation files. */
9+
// "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects */
10+
// "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */
11+
// "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
12+
13+
/* Language and Environment */
14+
"target": "es5", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
15+
// "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
16+
// "jsx": "preserve", /* Specify what JSX code is generated. */
17+
// "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */
18+
// "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
19+
// "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h' */
20+
// "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */
21+
// "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx*`.` */
22+
// "reactNamespace": "", /* Specify the object invoked for `createElement`. This only applies when targeting `react` JSX emit. */
23+
// "noLib": true, /* Disable including any library files, including the default lib.d.ts. */
24+
// "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
25+
26+
/* Modules */
27+
"module": "commonjs", /* Specify what module code is generated. */
28+
// "rootDir": "./", /* Specify the root folder within your source files. */
29+
// "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
30+
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
31+
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
32+
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
33+
// "typeRoots": [], /* Specify multiple folders that act like `./node_modules/@types`. */
34+
// "types": [], /* Specify type package names to be included without being referenced in a source file. */
35+
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
36+
// "resolveJsonModule": true, /* Enable importing .json files */
37+
// "noResolve": true, /* Disallow `import`s, `require`s or `<reference>`s from expanding the number of files TypeScript should add to a project. */
38+
39+
/* JavaScript Support */
40+
// "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files. */
41+
// "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
42+
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`. */
43+
44+
/* Emit */
45+
// "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
46+
// "declarationMap": true, /* Create sourcemaps for d.ts files. */
47+
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
48+
// "sourceMap": true, /* Create source map files for emitted JavaScript files. */
49+
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output. */
50+
// "outDir": "./", /* Specify an output folder for all emitted files. */
51+
// "removeComments": true, /* Disable emitting comments. */
52+
// "noEmit": true, /* Disable emitting files from a compilation. */
53+
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
54+
// "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types */
55+
// "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
56+
// "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */
57+
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
58+
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
59+
// "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */
60+
// "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */
61+
// "newLine": "crlf", /* Set the newline character for emitting files. */
62+
// "stripInternal": true, /* Disable emitting declarations that have `@internal` in their JSDoc comments. */
63+
// "noEmitHelpers": true, /* Disable generating custom helper functions like `__extends` in compiled output. */
64+
// "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */
65+
// "preserveConstEnums": true, /* Disable erasing `const enum` declarations in generated code. */
66+
// "declarationDir": "./", /* Specify the output directory for generated declaration files. */
67+
68+
/* Interop Constraints */
69+
// "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
70+
// "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
71+
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */
72+
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
73+
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
74+
75+
/* Type Checking */
76+
"strict": true, /* Enable all strict type-checking options. */
77+
// "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied `any` type.. */
78+
// "strictNullChecks": true, /* When type checking, take into account `null` and `undefined`. */
79+
// "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
80+
// "strictBindCallApply": true, /* Check that the arguments for `bind`, `call`, and `apply` methods match the original function. */
81+
// "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */
82+
// "noImplicitThis": true, /* Enable error reporting when `this` is given the type `any`. */
83+
// "useUnknownInCatchVariables": true, /* Type catch clause variables as 'unknown' instead of 'any'. */
84+
// "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
85+
// "noUnusedLocals": true, /* Enable error reporting when a local variables aren't read. */
86+
// "noUnusedParameters": true, /* Raise an error when a function parameter isn't read */
87+
// "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */
88+
// "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */
89+
// "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */
90+
// "noUncheckedIndexedAccess": true, /* Include 'undefined' in index signature results */
91+
// "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */
92+
// "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type */
93+
// "allowUnusedLabels": true, /* Disable error reporting for unused labels. */
94+
// "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */
95+
96+
/* Completeness */
97+
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
98+
"skipLibCheck": true, /* Skip type checking all .d.ts files. */
99+
"noEmit": true,
100+
"baseUrl": ".",
101+
"paths": {
102+
"@apis/*": ["src/apis/*"],
103+
"@utils/*": ["src/utils/*"]
104+
}
105+
}
106+
}

0 commit comments

Comments
 (0)