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 2660dbd commit d908779Copy full SHA for d908779
packages/svelte-check/src/incremental.ts
@@ -905,9 +905,7 @@ function rebasePathsConfig(
905
const result: string[] = [];
906
for (const spec of specs) {
907
// ${configDir} placeholder should already be resolved here
908
- const absoluteSpec = path.isAbsolute(spec)
909
- ? spec
910
- : path.resolve(pathsBaseDir, spec);
+ const absoluteSpec = path.isAbsolute(spec) ? spec : path.resolve(pathsBaseDir, spec);
911
const rebasedSpec = toRelativePosix(overlayDir, absoluteSpec);
912
result.push(rebasedSpec);
913
let posixSpec = toPosixPath(spec);
0 commit comments