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:
parent
4fc4390926
commit
246e3f2ae0
1 changed files with 5 additions and 3 deletions
|
|
@ -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"]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue