Skip to content

Commit

Permalink
fix: default source path bug (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
no-stack-dub-sack authored Jun 23, 2023
1 parent 2d9ae2c commit 90099f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/Settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,10 @@ class Settings {

return !this.isDX(projectRoot) ? {
relative: join(...legacyDefault),
resolved: resolve(projectRoot, ...legacyDefault),
resolved: resolve("${workspaceFolder}", ...legacyDefault),
} : {
relative: join(...dxDefault),
resolved: resolve(projectRoot, ...dxDefault),
resolved: resolve("${workspaceFolder}", ...dxDefault),
}
}

Expand Down

0 comments on commit 90099f1

Please sign in to comment.