diff --git a/rollup/tools/configuredSubpackagePlugin.ts b/rollup/tools/configuredSubpackagePlugin.ts index e282556b..a73867f9 100644 --- a/rollup/tools/configuredSubpackagePlugin.ts +++ b/rollup/tools/configuredSubpackagePlugin.ts @@ -269,13 +269,13 @@ export function configuredSubpackagePlugin(): rollup.Plugin { this.emitFile({ fileName: `esm/${modulePath}.js`, needsCodeReference: false, - source: `export * from 'vscode/vscode/${modulePath}'`, + source: `export * from '@codingame/monaco-vscode-api/vscode/${modulePath}'`, type: 'asset' }) this.emitFile({ fileName: `esm/${modulePath}.d.ts`, needsCodeReference: false, - source: `export * from 'vscode/vscode/${modulePath}'`, + source: `export * from '@codingame/monaco-vscode-api/vscode/${modulePath}'`, type: 'asset' }) }