-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
43 lines (42 loc) · 1.53 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
{
"compilerOptions": {
// Enable all strict type checking options.
"strict": true,
// Enables project references and informs the TypeScript program where to find referenced outputs.
"composite": true,
// Project references rely on the compiled declarations (.d.ts) of external projects.
// If declarations do not exist, TypeScript will generate them on demand.
"declaration": true,
// Generate sourcemaps for declarations, so that language server integrations in editors like "Go to" resolve correctly.
"declarationMap": true,
// If the typechecker fails, avoid generating invalid or partial declarations.
"noEmitOnError": true,
// Avoids eager loading and analyzing all declarations, improving performance.
"skipLibCheck": true,
// Allow 'import x from y' when a module doesn't have a default export.
"allowSyntheticDefaultImports": true,
// Emit additional JavaScript to ease support for importing CommonJS modules.
"esModuleInterop": true,
// Ensure that each file can be safely transpiled without relying on other imports.
"isolatedModules": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"allowJs": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"pretty": true,
"forceConsistentCasingInFileNames": true,
"removeComments": true,
"resolveJsonModule": true,
"verbatimModuleSyntax": true
},
"files": [],
"references": [
{
"path": "apps/web"
},
{
"path": "apps/api"
}
]
}