Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/python-wasm
Path: blob/main/core/tsconfig.json
1390 views
1
{
2
"compilerOptions": {
3
"incremental": true,
4
"target": "es2020",
5
"module": "commonjs",
6
"lib": ["es5", "es6", "es2017", "dom"],
7
"allowJs": true,
8
"declaration": true,
9
"downlevelIteration": true,
10
"esModuleInterop": true,
11
"forceConsistentCasingInFileNames": true,
12
"isolatedModules": true,
13
"noImplicitThis": true,
14
"noUnusedLocals": true,
15
"noUnusedParameters": true,
16
"skipLibCheck": true,
17
"sourceMap": true,
18
"strictNullChecks": true,
19
"moduleResolution": "node"
20
},
21
}
22
23