Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/tsconfig.json
5691 views
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
"locales/*/*.json",
34
"locales/en/common.ts"
35
],
36
"exclude": [
37
"node_modules",
38
"public",
39
"styles",
40
"dist",
41
".next",
42
"target",
43
"locales",
44
"software-inventory"
45
],
46
"references": [
47
{ "path": "../backend" },
48
{ "path": "../database" },
49
{ "path": "../frontend" },
50
{ "path": "../conat" },
51
{ "path": "../server" },
52
{ "path": "../util" }
53
]
54
}
55
56