Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/gitpod-protocol/tsconfig.json
2492 views
1
{
2
"compilerOptions": {
3
"incremental": true,
4
"strict": true,
5
"noEmitOnError": false,
6
"noUnusedLocals": true,
7
"experimentalDecorators": true,
8
"emitDecoratorMetadata": true,
9
"strictPropertyInitialization": false,
10
"downlevelIteration": true,
11
"module": "commonjs",
12
"moduleResolution": "node",
13
"target": "ES2018",
14
"jsx": "react",
15
"lib": [
16
"es6",
17
"es2018",
18
"dom",
19
"ES2018.Regexp"
20
],
21
"sourceMap": true,
22
"declaration": true,
23
"declarationMap": true,
24
"skipLibCheck": true,
25
"outDir": "lib",
26
"useUnknownInCatchVariables": false,
27
"esModuleInterop": true
28
},
29
"include": [
30
"src"
31
]
32
}
33
34