Fixing errors

This commit is contained in:
Matt Bierner
2026-02-12 12:43:36 -08:00
parent 5d33f345e1
commit 37cdd0eb43
3 changed files with 8 additions and 8 deletions

View File

@@ -25,7 +25,7 @@
"devDependencies": {
"@types/dompurify": "^3.0.5",
"@types/lodash.throttle": "^4.1.9",
"@types/markdown-it": "14.1.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "22.x",
"@types/picomatch": "^2.3.0",
"@types/vscode-notebook-renderer": "^1.60.0",
@@ -195,14 +195,14 @@
}
},
"node_modules/@types/markdown-it": {
"version": "14.1.0",
"resolved": "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-14.1.0.tgz",
"integrity": "sha512-B/o5iMXxpIAl1+792pO4ryhrNNiAus9HhrTs+Gt2m+6SIdEUEvyOIs0iqDNjTSRgbelWvyeek3UxfYYOKDaWfA==",
"version": "14.1.2",
"resolved": "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-14.1.2.tgz",
"integrity": "sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==",
"dev": true,
"license": "MIT",
"dependencies": {
"@types/linkify-it": "*",
"@types/mdurl": "*"
"@types/linkify-it": "^5",
"@types/mdurl": "^2"
}
},
"node_modules/@types/mdurl": {

View File

@@ -789,7 +789,7 @@
"devDependencies": {
"@types/dompurify": "^3.0.5",
"@types/lodash.throttle": "^4.1.9",
"@types/markdown-it": "14.1.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "22.x",
"@types/picomatch": "^2.3.0",
"@types/vscode-notebook-renderer": "^1.60.0",

View File

@@ -3,7 +3,7 @@
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import type MarkdownIt = require('markdown-it');
import type MarkdownIt from 'markdown-it';
import * as vscode from 'vscode';
import { ILogger } from './logging';
import { MarkdownContributionProvider } from './markdownExtensions';