File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,7 @@ export default rollup.defineConfig({
1414 if ( isResolved ) {
1515 return false
1616 }
17- // Do not include types that rollup-plugin-dts fails to parse
18- if ( / ^ p r o x y - p o l y f i l l / . test ( source ) ) {
19- return true
20- }
21- if ( externals . some ( external => source === external || source . startsWith ( `${ external } /` ) ) ) {
17+ if ( externals . some ( ( external ) => source === external || source . startsWith ( `${ external } /` ) ) ) {
2218 return true
2319 }
2420 return false
Original file line number Diff line number Diff line change 11import { MessageTransports } from 'vscode-languageclient'
2- import 'proxy-polyfill'
32import type { WorkspaceFolder } from 'vscode'
43import { CodinGameInfrastructure , Infrastructure } from './infrastructure'
54import { WillShutdownParams } from './customRequests'
You can’t perform that action at this time.
0 commit comments