Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/jake/tsconfig.json
5221 views
1
{
2
"extends": "../tsconfig.base.json",
3
"compilerOptions": {
4
"rootDir": "./src",
5
"outDir": "./out",
6
"types": [
7
"node"
8
],
9
"typeRoots": [
10
"./node_modules/@types"
11
]
12
},
13
"include": [
14
"src/**/*",
15
"../../src/vscode-dts/vscode.d.ts"
16
]
17
}
18
19