Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/wapython
Path: blob/main/web/terminal/tsconfig.json
1067 views
1
{
2
"compilerOptions": {
3
"rootDir": "src",
4
"outDir": "dist",
5
"sourceMap": true,
6
"esModuleInterop": true,
7
"module": "es6",
8
"target": "es5",
9
"moduleResolution": "node",
10
"jsx": "react",
11
"allowJs": true,
12
"tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
13
"incremental": true
14
},
15
"include": ["src", "index.d.ts"],
16
"exclude": ["node_modules", "build", "dist"]
17
}
18
19