Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/project/tsconfig.json
1447 views
1
{
2
"extends": "../tsconfig.json",
3
"compilerOptions": {
4
"types": ["node", "jest"],
5
"lib": ["ES2021"],
6
"target": "ES2021",
7
"rootDir": "./",
8
"outDir": "dist"
9
},
10
"exclude": ["node_modules", "dist", "test", "jupyter/test"],
11
"references": [
12
{ "path": "../backend" },
13
{ "path": "../comm" },
14
{ "path": "../jupyter" },
15
{ "path": "../conat" },
16
{ "path": "../sync" },
17
{ "path": "../sync-client" },
18
{ "path": "../sync-fs" },
19
{ "path": "../util" }
20
]
21
}
22
23