Use more restrictive lib for markdown language server (#172873)

This commit is contained in:
Matt Bierner
2023-01-30 16:52:58 -08:00
committed by GitHub
parent fac1eea159
commit 10ffbae8ae
2 changed files with 6 additions and 3 deletions

View File

@@ -1,7 +1,12 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./out"
"outDir": "./out",
"lib": [
"ES2020",
"ES2021.Promise",
"WebWorker"
]
},
"include": [
"src/**/*"