Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/python-wasm
Path: blob/main/web/browser/tsconfig.json
1391 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
"incremental": true,
13
"tsBuildInfoFile": "dist/tsconfig.tsbuildinfo"
14
},
15
"include": ["src", "index.d.ts"],
16
"exclude": ["node_modules", "build", "dist"]
17
}
18
19