gitextract_tk17q1u7/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── pull_request_template.md │ └── workflows/ │ ├── prettier-check.yml │ └── test.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.yaml ├── .vscode/ │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── .vscodeignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __mocks__/ │ ├── child_process.ts │ └── vscode.ts ├── eslint.config.mjs ├── package.json ├── scripts/ │ ├── pre-release.sh │ └── publish.sh ├── src/ │ ├── ExtensionController.ts │ ├── SaveTracker.ts │ ├── extension.ts │ ├── model.ts │ ├── test/ │ │ ├── ExtensionController.spec.ts │ │ ├── SaveTracker.spec.ts │ │ ├── testUtils.ts │ │ └── utils.spec.ts │ └── utils.ts ├── tsconfig.json ├── tsconfig.node20.json └── tsconfig.unit.json