-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
45 lines (45 loc) · 1.6 KB
/
tsconfig.base.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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "esnext",
"module": "esnext",
"lib": ["esnext", "dom"],
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitThis": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noImplicitReturns": true,
"noEmitOnError": true,
"strict": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@bloc-hn-nextjs-app/api/*": ["apps/bloc-hacker-news-nextjs-app/api/*"],
"@bloc-hn-nextjs-app/features/*": [
"apps/bloc-hacker-news-nextjs-app/features/*"
],
"@bloc-hn-nextjs-app/lib/*": ["apps/bloc-hacker-news-nextjs-app/lib/*"],
"@jacobtipp/bloc": ["packages/bloc/src/index.ts"],
"@jacobtipp/bloc-concurrency": ["packages/bloc-concurrency/src/index.ts"],
"@jacobtipp/bloc-devtools": ["packages/bloc-devtools/src/index.ts"],
"@jacobtipp/bloc-query": ["packages/bloc-query/src/index.ts"],
"@jacobtipp/hydrated-bloc": ["packages/hydrated-bloc/src/index.ts"],
"@jacobtipp/react-bloc": ["packages/react-bloc/src/index.ts"],
"@jacobtipp/replay-bloc": ["packages/replay-bloc/src/index.ts"],
"@jacobtipp/state": ["packages/state/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}