forked from qingtingzhiyu/spext-xt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.mjs
More file actions
25 lines (21 loc) · 789 Bytes
/
constants.mjs
File metadata and controls
25 lines (21 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* --------------------------------------------------------------------------------------------
* SonarLint for VisualStudio Code
* Copyright (C) 2017-2022 SonarSource SA
* sonarlint@sonarsource.com
* Licensed under the LGPLv3 License. See LICENSE.txt in the project root for license information.
* ------------------------------------------------------------------------------------------ */
'use strict';
const constants = {};
Object.defineProperty(constants, 'UNIVERSAL_PLATFORM', {
value: 'universal',
writable: false
});
Object.defineProperty(constants, 'LATEST_JRE', {
value: 17,
writable: false
});
Object.defineProperty(constants, 'TARGETED_PLATFORMS', {
value: ['win32-x64', 'linux-x64', 'darwin-x64', 'darwin-arm64'],
writable: false
});
export default constants;