forked from Pi-Defi-world/acbu-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
53 lines (53 loc) · 1.35 KB
/
Copy pathtsconfig.json
File metadata and controls
53 lines (53 loc) · 1.35 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
43
44
45
46
47
48
49
50
51
52
53
{
"compilerOptions": {
"target": "ES2022",
"module": "commonjs",
"lib": [
"ES2022"
],
"outDir": "./dist",
"strict": true,
"strictNullChecks": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"ignoreDeprecations": "5.0"
},
"include": [
"src/**/*",
"prisma/**/*",
"scripts/**/*",
"tests/setup.ts",
"tests/webhookService.test.ts",
"tests/walletActivationService.test.ts",
"tests/walletService.test.ts",
"tests/transferService.test.ts",
"tests/RebalancingEngine.test.ts",
"tests/recoveryService.test.ts",
"tests/centralBankClient.test.ts",
"tests/forexClient.test.ts",
"tests/notificationService.test.ts",
"tests/metricsService.test.ts",
"scripts/basketService.test.ts",
"scripts/contracts.test.ts",
"scripts/auditService.test.ts",
"tests/idempotencyStore.test.ts"
],
"exclude": [
"node_modules",
"dist",
"tests"
]
}