forked from maybe-finance/maybe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
30 lines (30 loc) · 1.18 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES6",
"module": "ESNext",
"lib": ["es2017", "dom", "ESNext"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"importsNotUsedAsValues": "error",
"baseUrl": ".",
"paths": {
"@maybe-finance/client/features": ["libs/client/features/src/index.ts"],
"@maybe-finance/client/shared": ["libs/client/shared/src/index.ts"],
"@maybe-finance/design-system": ["libs/design-system/src/index.ts"],
"@maybe-finance/server/features": ["libs/server/features/src/index.ts"],
"@maybe-finance/server/shared": ["libs/server/shared/src/index.ts"],
"@maybe-finance/shared": ["libs/shared/src/index.ts"],
"@maybe-finance/teller-api": ["libs/teller-api/src/index.ts"],
"@maybe-finance/trpc": ["apps/server/src/app/trpc.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}