Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/markdown-language-features/notebook/tsconfig.json
5256 views
1
{
2
"extends": "../../tsconfig.base.json",
3
"compilerOptions": {
4
"rootDir": ".",
5
"outDir": "./dist/",
6
"jsx": "react",
7
"module": "esnext",
8
"lib": [
9
"ES2024",
10
"DOM",
11
"DOM.Iterable"
12
],
13
"types": [],
14
"typeRoots": [
15
"../node_modules/@types"
16
],
17
"skipLibCheck": true
18
}
19
}
20
21