-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
29 lines (29 loc) · 934 Bytes
/
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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"resolveJsonModule": true,
"esModuleInterop": true,
"paths": {
"@alfred/alfred-common": ["libs/alfred-common/src/index.ts"],
"@alfred/application-analytics": ["libs/application-analytics/src/index.ts"],
"@alfred/copy-trading": ["libs/copy-trading/src/index.ts"],
"@alfred/graphs": ["libs/graphs/src/index.ts"],
"@alfred/wallets": ["libs/wallets/src/index.ts"],
"@sdf/base": ["libs/ui-base/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp", "apps/alfred-fe/public"]
}