Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/wapython
Path: blob/main/desktop/electron/tsconfig.json
1067 views
1
{
2
"compilerOptions": {
3
"target": "es2020",
4
"allowJs": true,
5
"module": "commonjs",
6
"skipLibCheck": true,
7
"esModuleInterop": true,
8
"noImplicitAny": true,
9
"sourceMap": true,
10
"baseUrl": ".",
11
"outDir": "dist/main",
12
"moduleResolution": "node",
13
"resolveJsonModule": true,
14
"paths": {
15
"*": ["node_modules/*"]
16
}
17
},
18
"include": ["src/**/*"]
19
}
20
21