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/backend/tsconfig.json
Views: 687
1
{
2
"extends": "../tsconfig.json",
3
"compilerOptions": {
4
"types": ["node", "jest"],
5
"lib": ["es7"],
6
"rootDir": "./",
7
"outDir": "dist"
8
},
9
"exclude": ["node_modules", "dist", "test"],
10
"references": [{ "path": "../util" }]
11
}
12
13