File tree Expand file tree Collapse file tree 3 files changed +25
-9
lines changed Expand file tree Collapse file tree 3 files changed +25
-9
lines changed Original file line number Diff line number Diff line change 18
18
"include" : [
19
19
" typings/require.d.ts" ,
20
20
" typings/thenable.d.ts" ,
21
+ " typings/vscode-globals-product.d.ts" ,
21
22
" vs/loader.d.ts" ,
22
23
" vs/monaco.d.ts" ,
23
24
" vs/editor/*" ,
Original file line number Diff line number Diff line change 3
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
4
*--------------------------------------------------------------------------------------------*/
5
5
6
- declare global {
6
+ // AMD2ESM mirgation relevant
7
7
8
- /**
9
- * @deprecated You MUST use `IProductService` whenever possible.
10
- */
11
- var _VSCODE_PRODUCT_JSON : Record < string , any > ;
12
- /**
13
- * @deprecated You MUST use `IProductService` whenever possible.
14
- */
15
- var _VSCODE_PACKAGE_JSON : Record < string , any > ;
8
+ declare global {
16
9
17
10
/**
18
11
* @deprecated node modules that are in used in a context that
Original file line number Diff line number Diff line change
1
+ /*---------------------------------------------------------------------------------------------
2
+ * Copyright (c) Microsoft Corporation. All rights reserved.
3
+ * Licensed under the MIT License. See License.txt in the project root for license information.
4
+ *--------------------------------------------------------------------------------------------*/
5
+
6
+ // AMD2ESM mirgation relevant
7
+
8
+ declare global {
9
+
10
+ /**
11
+ * @deprecated You MUST use `IProductService` whenever possible.
12
+ */
13
+ var _VSCODE_PRODUCT_JSON : Record < string , any > ;
14
+ /**
15
+ * @deprecated You MUST use `IProductService` whenever possible.
16
+ */
17
+ var _VSCODE_PACKAGE_JSON : Record < string , any > ;
18
+
19
+ }
20
+
21
+ // fake export to make global work
22
+ export { }
You can’t perform that action at this time.
0 commit comments