Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/python-wasm
Path: blob/main/python/pylang/tsconfig.json
1391 views
1
{
2
"compilerOptions": {
3
"incremental": true,
4
"target": "es5",
5
"lib": ["es6", "es2017", "dom"],
6
"allowJs": true,
7
"declaration": false,
8
"downlevelIteration": true,
9
"esModuleInterop": true,
10
"forceConsistentCasingInFileNames": true,
11
"isolatedModules": true,
12
"jsx": "react-jsx",
13
"noImplicitThis": true,
14
"noUnusedLocals": true,
15
"noUnusedParameters": true,
16
"skipLibCheck": true,
17
"sourceMap": true,
18
"strictNullChecks": true,
19
"rootDir": "./",
20
"outDir": "dist"
21
},
22
"exclude": ["node_modules", "dist"],
23
"watchOptions": {
24
"watchFile": "useFsEvents",
25
"watchDirectory": "useFsEvents",
26
"fallbackPolling": "dynamicPriority",
27
"synchronousWatchDirectory": true
28
}
29
}
30
31