Skip to content

Commit 89900d1

Browse files
authored
fix some outdated content (#22)
1 parent 32a5df3 commit 89900d1

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/content/docs/guides/first-server.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,9 +151,9 @@ Finally, create a `.vscode` directory in the root of the project, and add a `lau
151151
"--profile-temp",
152152
"--skip-release-notes",
153153
"--skip-welcome",
154-
"--extensionDevelopmentPath=${workspaceRoot}/packages/vscode"
154+
"--extensionDevelopmentPath=${workspaceFolder}/packages/client"
155155
],
156-
"outFiles": ["${workspaceRoot}/packages/vscode/dist/*.js"]
156+
"outFiles": ["${workspaceFolder}/packages/client/dist/*.js"]
157157
}
158158
]
159159
}
@@ -230,7 +230,7 @@ yarn add @volar/language-server @volar/vscode vscode-languageclient @types/vscod
230230
</TabItem>
231231
</Tabs>
232232

233-
Next, create a `tsconfig.json` file in the `packages/client` folder to configure TypeScript, which will be used as a build tool in this guide. This file will tell TypeScript to output the compiled JavaScript files to a `dist` directory.
233+
Next, create a `tsconfig.json` file in the `packages/client` folder to configure TypeScript, which will be used as a build tool in this guide. This file will tell TypeScript to output the compiled JavaScript files to a `out` directory.
234234

235235
As previously mentioned, this file will extend the base configuration in the `tsconfig.base.json` file that was created earlier at the root of the project.
236236

0 commit comments

Comments
 (0)