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