Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/tsconfig.json
1447 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": ["node_modules", "public", "styles", "dist"],
37
"references": [
38
{ "path": "../backend" },
39
{ "path": "../database" },
40
{ "path": "../frontend" },
41
{ "path": "../conat" },
42
{ "path": "../server" },
43
{ "path": "../util" }
44
]
45
}
46
47