Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/hub/tsconfig.json
1496 views
1
{
2
"extends": "../tsconfig.json",
3
"compilerOptions": {
4
"rootDir": "./",
5
"outDir": "dist",
6
"lib": ["ESNext"]
7
},
8
"exclude": ["node_modules", "dist", "test"],
9
"references": [
10
{ "path": "../backend" },
11
{ "path": "../database" },
12
{ "path": "../frontend" },
13
{ "path": "../next/tsconfig-dist.json" },
14
{ "path": "../server" },
15
{ "path": "../static" },
16
{ "path": "../util" },
17
{ "path": "../conat" }
18
]
19
}
20
21