mirror of
https://git.tuxpa.in/a/code-server.git
synced 2025-01-10 10:08:46 +00:00
15 lines
684 B
TypeScript
15 lines
684 B
TypeScript
|
/*---------------------------------------------------------------------------------------------
|
||
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
|
*--------------------------------------------------------------------------------------------*/
|
||
|
|
||
|
import { localize } from 'vs/nls';
|
||
|
import { IConfigurationNode } from 'vs/platform/configuration/common/configurationRegistry';
|
||
|
|
||
|
export const workbenchConfigurationNodeBase = Object.freeze<IConfigurationNode>({
|
||
|
'id': 'workbench',
|
||
|
'order': 7,
|
||
|
'title': localize('workbenchConfigurationTitle', "Workbench"),
|
||
|
'type': 'object',
|
||
|
});
|