Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/dashboard/tsconfig.json
2492 views
1
{
2
"compilerOptions": {
3
"incremental": true,
4
"paths": {
5
"@podkit/*": ["./src/components/podkit/*"]
6
},
7
"target": "es6",
8
"lib": [
9
"dom",
10
"dom.iterable",
11
"esnext"
12
],
13
"allowJs": true,
14
"skipLibCheck": true,
15
"esModuleInterop": true,
16
"allowSyntheticDefaultImports": true,
17
"strict": true,
18
"forceConsistentCasingInFileNames": true,
19
"noFallthroughCasesInSwitch": true,
20
"noUnusedLocals": false,
21
"module": "esnext",
22
"moduleResolution": "node",
23
"resolveJsonModule": true,
24
"isolatedModules": true,
25
"downlevelIteration": true,
26
"noEmit": true,
27
"jsx": "react-jsx",
28
"useUnknownInCatchVariables": false
29
},
30
"include": [
31
"src",
32
"ee/src"
33
]
34
}
35
36