chore(payments/backend-api): 🔧 Update TypeScript compiler config in tsconfig.json to refine build settings (e.g., strict mode, ES version, or module resolution).

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Lilith 2026-02-19 05:53:08 -08:00
parent 4fc4390926
commit 246e3f2ae0

View file

@ -5,13 +5,15 @@
"baseUrl": "./",
"paths": {
"@/*": ["src/*"],
"@/providers": ["providers"],
"@/providers/*": ["providers/*"],
"@/src/*": ["src/*"],
"@/earnings/*": ["earnings/*"],
"@/providers": ["../providers", "providers"],
"@/providers/*": ["../providers/*", "providers/*"],
"@/segpay/*": ["segpay/*"],
"@/nowpayments/*": ["nowpayments/*"],
"@/services/*": ["services/*"]
}
},
"include": ["**/*.ts"],
"exclude": ["node_modules", "dist"]
"exclude": ["node_modules", "dist", "**/*.spec.ts", "**/*.e2e-spec.ts", "test"]
}