Skip to content

Commit 92dc9ee

Browse files
author
Loïc Mangeonjean
committed
cleanup: remove proxy polyfill
1 parent 9ee48d2 commit 92dc9ee

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

rollup.types.config.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff 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 (/^proxy-polyfill/.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

src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { MessageTransports } from 'vscode-languageclient'
2-
import 'proxy-polyfill'
32
import type { WorkspaceFolder } from 'vscode'
43
import { CodinGameInfrastructure, Infrastructure } from './infrastructure'
54
import { WillShutdownParams } from './customRequests'

0 commit comments

Comments
 (0)