Skip to content

Commit b66fb29

Browse files
committed
TEMP
1 parent 738b957 commit b66fb29

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/amazonq/src/lsp/config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* SPDX-License-Identifier: Apache-2.0
44
*/
55
import * as vscode from 'vscode'
6-
import { DevSettings, getServiceEnvVarConfig } from 'aws-core-vscode/shared'
6+
import { DevSettings, getServiceEnvVarConfig, resolvePath } from 'aws-core-vscode/shared'
77
import { LspConfig } from 'aws-core-vscode/amazonq'
88
import { LanguageClient } from 'vscode-languageclient'
99
import {
@@ -40,8 +40,8 @@ export const defaultAmazonQLspConfig: ExtendedAmazonQLSPConfig = {
4040
supportedVersions: '1.*.*',
4141
id: 'AmazonQ', // used across IDEs for identifying global storage/local disk locations. Do not change.
4242
suppressPromptPrefix: 'amazonQ',
43-
path: undefined,
44-
ui: undefined,
43+
path: resolvePath('~/agent-standalone.js'), // '/Volumes/workplace/aws-language-servers/app/aws-lsp-codewhisperer-runtimes/out/agent-standalone.js'
44+
ui: resolvePath('~/amazonq-ui.js'), // '/Volumes/workplace/aws-language-servers/chat-client/build/amazonq-ui.js'
4545
}
4646

4747
export function getAmazonQLspConfig(): ExtendedAmazonQLSPConfig {

0 commit comments

Comments
 (0)