-
-
Notifications
You must be signed in to change notification settings - Fork 220
/
tsconfig.json
48 lines (45 loc) · 1.11 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"compilerOptions": {
"composite": true,
"incremental": true,
"noEmitOnError": true,
"allowJs": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"lib": ["dom", "es2017"],
"target": "esnext",
"module": "nodenext",
"moduleResolution": "nodenext",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"preserveConstEnums": true,
"resolveJsonModule": true,
"sourceMap": true,
"removeComments": false,
"strict": true,
"strictNullChecks": true,
"importHelpers": true,
"preserveWatchOutput": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noEmit": true,
"declaration": true,
"declarationMap": true,
"baseUrl": ".",
"paths": {
"@app/*": ["@app/*"]
}
},
"include": [],
"exclude": ["@app/e2e"],
"references": [
{ "path": "@app/config" },
{ "path": "@app/components" },
{ "path": "@app/graphql" },
{ "path": "@app/server" },
{ "path": "@app/worker" }
]
}