-
Notifications
You must be signed in to change notification settings - Fork 10
/
tsconfig.json
41 lines (37 loc) · 1.19 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
{
"compilerOptions": {
/* Visit https://www.typescriptlang.org/tsconfig to read more about this file */
/* This file is <extended> by each package to reduce duplication */
"target": "es6",
"module": "esnext",
"jsx": "preserve",
"isolatedModules": true,
"resolveJsonModule": true,
/* Strict Type-Checking Options (all on) */
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
/* Additional Checks (all on) */
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
/* Module Resolution Options */
"esModuleInterop": true,
"moduleResolution": "node",
"paths": {
/* Configure utility absolute base imports */
"@docs/*": ["../docs/src/*"],
"@app/*": ["../app/src/*"],
/* Configure path aliases for non-terminal monorepo packages */
"@architus/lib/*": ["../lib/src/*"],
"@architus/facade/*": ["../design/src/*"]
},
/* Advanced Options */
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
}
}