File tree Expand file tree Collapse file tree
markdown-language-features Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11src /**
22tsconfig.json
3+ out /**
4+ extension.webpack.config.js
35yarn.lock
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+ //@ts -check
7+
8+ 'use strict' ;
9+
10+ const withDefaults = require ( '../shared.webpack.config' ) ;
11+
12+ module . exports = withDefaults ( {
13+ context : __dirname ,
14+ entry : {
15+ extension : './src/extension.ts' ,
16+ } ,
17+ resolve : {
18+ mainFields : [ 'module' , 'main' ]
19+ }
20+ } ) ;
Original file line number Diff line number Diff line change 11test /**
22src /**
33tsconfig.json
4+ out /**
5+ extension.webpack.config.js
46yarn.lock
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+ //@ts -check
7+
8+ 'use strict' ;
9+
10+ const withDefaults = require ( '../shared.webpack.config' ) ;
11+
12+ module . exports = withDefaults ( {
13+ context : __dirname ,
14+ entry : {
15+ main : './src/main.ts' ,
16+ } ,
17+ resolve : {
18+ mainFields : [ 'module' , 'main' ]
19+ }
20+ } ) ;
Original file line number Diff line number Diff line change 11src /**
22tsconfig.json
3+ out /**
4+ extension.webpack.config.js
35yarn.lock
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+ //@ts -check
7+
8+ 'use strict' ;
9+
10+ const withDefaults = require ( '../shared.webpack.config' ) ;
11+
12+ module . exports = withDefaults ( {
13+ context : __dirname ,
14+ entry : {
15+ main : './src/main.ts' ,
16+ } ,
17+ resolve : {
18+ mainFields : [ 'module' , 'main' ]
19+ }
20+ } ) ;
Original file line number Diff line number Diff line change 11src /**
22tsconfig.json
3+ out /**
4+ extension.webpack.config.js
35yarn.lock
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+ //@ts -check
7+
8+ 'use strict' ;
9+
10+ const withDefaults = require ( '../shared.webpack.config' ) ;
11+
12+ module . exports = withDefaults ( {
13+ context : __dirname ,
14+ entry : {
15+ main : './src/main.ts' ,
16+ } ,
17+ resolve : {
18+ mainFields : [ 'module' , 'main' ]
19+ }
20+ } ) ;
Original file line number Diff line number Diff line change 66extension.webpack.config.js
77OSSREADME.json
88yarn.lock
9+ preview-src /**
10+ webpack.config.js
You can’t perform that action at this time.
0 commit comments