Don't include node types in markdown-math

This commit is contained in:
Matt Bierner 2021-07-22 17:30:02 -07:00
parent 54a2e15f6b
commit 0e09ae9244
No known key found for this signature in database
GPG key ID: 099C331567E11888
3 changed files with 7 additions and 8 deletions

View file

@ -4,6 +4,8 @@
*--------------------------------------------------------------------------------------------*/
import * as vscode from 'vscode';
declare function require(path: string): any;
const enabledSetting = 'markdown.math.enabled';
export function activate(context: vscode.ExtensionContext) {

View file

@ -1 +1,5 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
/// <reference path='../../../src/vs/vscode.d.ts'/>

View file

@ -2,14 +2,7 @@
"extends": "../tsconfig.base.json",
"compilerOptions": {
"outDir": "./out",
"experimentalDecorators": true,
"lib": [
"es6",
"es2015.promise",
"es2019.array",
"es2020.string",
"dom"
]
"types": []
},
"include": [
"src/**/*"