File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 3
3
* SPDX-License-Identifier: Apache-2.0
4
4
*/
5
5
import * as vscode from 'vscode'
6
- import { DevSettings , getServiceEnvVarConfig } from 'aws-core-vscode/shared'
6
+ import { DevSettings , getServiceEnvVarConfig , resolvePath } from 'aws-core-vscode/shared'
7
7
import { LspConfig } from 'aws-core-vscode/amazonq'
8
8
import { LanguageClient } from 'vscode-languageclient'
9
9
import {
@@ -40,8 +40,8 @@ export const defaultAmazonQLspConfig: ExtendedAmazonQLSPConfig = {
40
40
supportedVersions : '1.*.*' ,
41
41
id : 'AmazonQ' , // used across IDEs for identifying global storage/local disk locations. Do not change.
42
42
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'
45
45
}
46
46
47
47
export function getAmazonQLspConfig ( ) : ExtendedAmazonQLSPConfig {
You can’t perform that action at this time.
0 commit comments