CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/static/tsconfig.json
Views: 687
1
{
2
"extends": "../tsconfig.json",
3
"compilerOptions": {
4
"incremental": true,
5
"lib": ["es5", "es6", "es2017", "dom"],
6
"outDir": "dist",
7
"rootDirs": ["./src"],
8
"sourceMap": true
9
},
10
"references": [
11
{ "path": "../backend" },
12
{ "path": "../frontend" },
13
{ "path": "../util" }
14
],
15
"exclude": ["dist", "node_modules"]
16
}
17
18