You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
target: 'node',// vscode extensions run in a Node.js-context 📖 -> https://webpack.js.org/configuration/node/
53
53
mode: mode,// this leaves the source code as close as possible to the original (when packaging we set this to 'production')
54
54
55
-
entry: {extension: './src/extension.ts'},// the entry point of this extension, 📖 -> https://webpack.js.org/configuration/entry-context/
55
+
entry: {extension: './src/extension.ts',markdown: './src/markdown/markdown.entry.ts'},// the entry point of this extension, 📖 -> https://webpack.js.org/configuration/entry-context/
56
56
output: {
57
57
// the bundle is stored in the 'dist' folder (check package.json), 📖 -> https://webpack.js.org/configuration/output/
0 commit comments