Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/markdown-language-features/preview-src/tsconfig.json
3291 views
1
{
2
"extends": "../../tsconfig.base.json",
3
"compilerOptions": {
4
"outDir": "./dist/",
5
"jsx": "react",
6
"esModuleInterop": true,
7
"lib": [
8
"es2024",
9
"DOM",
10
"DOM.Iterable"
11
]
12
},
13
"typeAcquisition": {
14
"include": [
15
"@types/vscode-webview"
16
]
17
}
18
}
19
20