Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/build/tsconfig.json
3520 views
1
{
2
"compilerOptions": {
3
"target": "es2024",
4
"lib": [
5
"ES2024"
6
],
7
"module": "nodenext",
8
"alwaysStrict": true,
9
"removeComments": false,
10
"preserveConstEnums": true,
11
"sourceMap": true,
12
"resolveJsonModule": true,
13
// enable JavaScript type checking for the language service
14
// use the tsconfig.build.json for compiling which disable JavaScript
15
// type checking so that JavaScript file are not transpiled
16
"allowJs": true,
17
"strict": true,
18
"exactOptionalPropertyTypes": false,
19
"useUnknownInCatchVariables": false,
20
"noUnusedLocals": true,
21
"noUnusedParameters": true,
22
"newLine": "lf",
23
"noEmit": true
24
},
25
"include": [
26
"**/*.ts",
27
"**/*.js"
28
],
29
"exclude": [
30
"node_modules/**"
31
]
32
}
33
34