2019-01-18 21:46:40 +00:00
|
|
|
import { IProductConfiguration } from "vs/platform/node/product";
|
|
|
|
|
|
|
|
const product = {
|
2019-02-28 20:04:19 +00:00
|
|
|
nameShort: "code-server",
|
|
|
|
nameLong: "code-server",
|
|
|
|
dataFolderName: ".code-server",
|
2019-01-18 21:46:40 +00:00
|
|
|
extensionsGallery: {
|
2019-01-26 00:18:21 +00:00
|
|
|
serviceUrl: "https://marketplace.visualstudio.com/_apis/public/gallery",
|
|
|
|
cacheUrl: "https://vscode.blob.core.windows.net/gallery/index",
|
|
|
|
itemUrl: "https://marketplace.visualstudio.com/items",
|
|
|
|
controlUrl: "https://az764295.vo.msecnd.net/extensions/marketplace.json",
|
|
|
|
recommendationsUrl: "https://az764295.vo.msecnd.net/extensions/workspaceRecommendations.json.gz",
|
2019-01-18 21:46:40 +00:00
|
|
|
},
|
|
|
|
extensionExecutionEnvironments: {
|
|
|
|
"wayou.vscode-todo-highlight": "worker",
|
|
|
|
"vscodevim.vim": "worker",
|
|
|
|
"coenraads.bracket-pair-colorizer": "worker",
|
|
|
|
},
|
|
|
|
fetchUrl: "",
|
|
|
|
} as IProductConfiguration;
|
|
|
|
|
|
|
|
if (process.env['VSCODE_DEV']) {
|
|
|
|
product.nameShort += ' Dev';
|
|
|
|
product.nameLong += ' Dev';
|
|
|
|
product.dataFolderName += '-dev';
|
|
|
|
}
|
|
|
|
|
|
|
|
export default product;
|