before rewriting formatter

This commit is contained in:
2025-06-25 08:34:56 -06:00
parent c4a2e5a077
commit 889c150b08
5 changed files with 542 additions and 296 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: 'production', // 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: {