/** * @license * Copyright 2025 Vybestack LLC * SPDX-License-Identifier: Apache-2.0 */ import * as path from 'node:path'; import { Storage } from '@vybestack/llxprt-code-settings'; export const SETTINGS_DIRECTORY_NAME = '.llxprt'; export const USER_SETTINGS_PATH = Storage.getGlobalSettingsPath(); export const USER_SETTINGS_DIR = path.dirname(USER_SETTINGS_PATH);