Skip to content

Commit 834ab9e

Browse files
author
Loïc Mangeonjean
committed
fix: remove more useless stuff from extensions
1 parent d1e65f3 commit 834ab9e

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

rollup.config.ts

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,17 +103,23 @@ ${files.map((_, index) => ` whenReady${index}()`).join(',\n')}
103103
breakpoints,
104104
taskDefinitions,
105105
viewsWelcome,
106+
terminal,
107+
viewsContainers,
106108
...remainingContribute
107-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
108-
} = manifest.contributes as any
109+
} = manifest.contributes ?? {}
109110

110111
const {
112+
activationEvents,
113+
devDependencies,
114+
dependencies,
115+
scripts,
111116
browser,
112117
main,
113118
l10n,
114119
extensionDependencies, // for pure-d that requires hbenl.vscode-test-explorer
115120
...remainingManifest
116-
} = manifest
121+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
122+
} = manifest as any
117123

118124
return {
119125
...remainingManifest,

0 commit comments

Comments
 (0)