Add selected and total count to settings description

Signed-off-by: Sanjula Ganepola <sanjulagane@gmail.com>
This commit is contained in:
Sanjula Ganepola
2024-11-16 23:20:31 -05:00
parent 319520c1d2
commit ff1864faf5
11 changed files with 43 additions and 23 deletions

View File

@@ -10,7 +10,7 @@ const path = require('path');
/** @type WebpackConfig */
const extensionConfig = {
target: 'node', // VS Code extensions run in a Node.js-context 📖 -> https://webpack.js.org/configuration/node/
mode: 'none', // this leaves the source code as close as possible to the original (when packaging we set this to 'production')
mode: 'none', // this leaves the source code as close as possible to the original (when packaging we set this to 'production')
entry: './src/extension.ts', // the entry point of this extension, 📖 -> https://webpack.js.org/configuration/entry-context/
output: {
@@ -45,4 +45,4 @@ const extensionConfig = {
level: "log", // enables logging required for problem matchers
},
};
module.exports = [ extensionConfig ];
module.exports = [extensionConfig];