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