-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.scripts.json
More file actions
42 lines (42 loc) · 1.65 KB
/
Copy pathtsconfig.scripts.json
File metadata and controls
42 lines (42 loc) · 1.65 KB
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
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"lib": ["ES2020"],
"outDir": "./dist",
"rootDir": "./",
"baseUrl": ".",
"strict": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": false,
"declarationMap": false,
"sourceMap": true,
"downlevelIteration": true,
"moduleResolution": "bundler",
"paths": {
"@qb-quantbot/workflows": ["./packages/workflows/src/index.ts"],
"@qb-quantbot/workflows/*": ["./packages/workflows/src/*"],
"@qb-quantbot/storage": ["./packages/storage/src/index.ts"],
"@qb-quantbot/storage/src/*": ["./packages/storage/src/*"],
"@qb-quantbot/storage/*": ["./packages/storage/src/*"],
"@qb-quantbot/simulation": ["./packages/simulation/src/index.ts"],
"@qb-quantbot/simulation/*": ["./packages/simulation/src/*"],
"@qb-quantbot/ohlcv": ["./packages/ohlcv/src/index.ts"],
"@qb-quantbot/ohlcv/*": ["./packages/ohlcv/src/*"],
"@qb-quantbot/ingestion": ["./packages/ingestion/src/index.ts"],
"@qb-quantbot/ingestion/*": ["./packages/ingestion/src/*"],
"@qb-quantbot/core": ["./packages/core/src/index.ts"],
"@qb-quantbot/core/*": ["./packages/core/src/*"],
"@qb-quantbot/ohlcv/candles": ["./packages/ohlcv/src/candles.ts"],
"@qb-quantbot/infra": ["./packages/infra/src/index.ts"],
"@qb-quantbot/infra/*": ["./packages/infra/src/*"]
}
},
"include": ["scripts/**/*", "src/**/*"],
"exclude": ["node_modules", "dist", "web"]
}