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
5256 views
1
{
2
"extends": "../../tsconfig.base.json",
3
"compilerOptions": {
4
"rootDir": ".",
5
"outDir": "./dist/",
6
"jsx": "react",
7
"esModuleInterop": true,
8
"lib": [
9
"es2024",
10
"DOM",
11
"DOM.Iterable"
12
],
13
"types": [
14
"vscode-webview"
15
],
16
"typeRoots": [
17
"../node_modules/@types"
18
],
19
"skipLibCheck": true
20
},
21
"typeAcquisition": {
22
"include": [
23
"@types/vscode-webview"
24
]
25
}
26
}
27
28