-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 1.16 KB
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 1.16 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
{
"compilerOptions": {
"target": "ES2022",
"module": "commonjs",
"lib": ["ES2022"],
"outDir": "./dist",
"strict": 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
},
"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"],
"exclude": ["node_modules", "dist", "tests"]
}