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.json
Views: 687
1
{
2
"compilerOptions": {
3
"lib": ["dom", "dom.iterable", "esnext"],
4
"composite": true,
5
"declaration": true,
6
"allowJs": true,
7
"skipLibCheck": true,
8
"strict": false,
9
"forceConsistentCasingInFileNames": true,
10
"noEmit": true,
11
"esModuleInterop": true,
12
"module": "esnext",
13
"moduleResolution": "node",
14
"resolveJsonModule": true,
15
"isolatedModules": true,
16
"strictNullChecks": true,
17
"noImplicitThis": true,
18
"noUnusedLocals": true,
19
"noUnusedParameters": true,
20
"downlevelIteration": true,
21
"jsx": "preserve",
22
"outDir": "dist",
23
"baseUrl": ".",
24
"incremental": true,
25
"target": "es2020"
26
},
27
"include": [
28
"next-env.d.ts",
29
"**/*.ts",
30
"**/*.tsx",
31
"software-inventory/*.json",
32
"components/landing/*.json"
33
],
34
"exclude": ["node_modules", "public", "styles", "dist"],
35
"references": [
36
{ "path": "../backend" },
37
{ "path": "../database" },
38
{ "path": "../frontend" },
39
{ "path": "../server" },
40
{ "path": "../util" }
41
]
42
}
43
44