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/next/tsconfig-dist.json
Views: 687
1
{
2
"extends": "../tsconfig.json",
3
"compilerOptions": {
4
"baseUrl": ".",
5
"outDir": "dist",
6
"lib": ["dom", "dom.iterable", "ESNext"]
7
},
8
"include": [
9
"next-env.d.ts",
10
"**/*.ts",
11
"**/*.tsx",
12
"software-inventory/*.json",
13
"components/landing/*.json"
14
],
15
"exclude": ["node_modules", "public", "styles", "dist"],
16
"references": [
17
{ "path": "../backend" },
18
{ "path": "../database" },
19
{ "path": "../frontend" },
20
{ "path": "../server" },
21
{ "path": "../util" }
22
]
23
}
24
25