Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/tsconfig.json
Views: 275
1
{
2
"compilerOptions": {
3
"allowJs": true,
4
"composite": true,
5
"declaration": true,
6
"downlevelIteration": true,
7
"esModuleInterop": true,
8
"forceConsistentCasingInFileNames": true,
9
"incremental": true,
10
"isolatedModules": true,
11
"jsx": "react-jsx",
12
"lib": ["es2020", "dom"],
13
"moduleResolution": "node",
14
"noImplicitThis": true,
15
"noUnusedLocals": true,
16
"noUnusedParameters": true,
17
"resolveJsonModule": true,
18
"skipLibCheck": true,
19
"sourceMap": true,
20
"strictNullChecks": true,
21
"target": "es2020",
22
"module": "commonjs"
23
}
24
// "watchOptions": {
25
// "fallbackPolling": "dynamicPriority",
26
// "synchronousWatchDirectory": true,
27
// "watchDirectory": "useFsEvents",
28
// "watchFile": "useFsEvents"
29
// }
30
}
31
32