We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 917305f commit 0ff384bCopy full SHA for 0ff384b
index.ts
@@ -6,7 +6,7 @@ export const resolveTypescriptPaths = (options: Options = {}) => {
6
return {
7
name: 'resolve-typescript-paths',
8
resolveId: (importee: string, importer: string) => {
9
- if (!compilerOptions.paths) {
+ if (importee.startsWith('\0') || !compilerOptions.paths) {
10
return null;
11
}
12
0 commit comments