add support for recursive selection and deselection of files in the tree view

This commit is contained in:
2025-03-12 07:25:26 +00:00
parent 65bf168e1f
commit 2d28f71e9b
5 changed files with 473 additions and 39 deletions

10
.vscode-test.mjs Normal file
View File

@@ -0,0 +1,10 @@
import * as path from 'path';
import { fileURLToPath } from 'url';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
export default {
version: 'stable',
extensionDevelopmentPath: __dirname,
extensionTestsPath: path.join(__dirname, 'out', 'test')
};