2025-07-07 18:25:13 +00:00
|
|
|
{
|
2025-11-05 17:14:34 +00:00
|
|
|
"extends": "../../tsconfig.json",
|
2025-07-07 18:25:13 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
2025-10-30 18:26:57 +00:00
|
|
|
"@erp/customers/*": ["./src/*"]
|
2025-07-07 18:25:13 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
2025-08-25 17:42:56 +00:00
|
|
|
"target": "ES2022",
|
2025-07-07 18:25:13 +00:00
|
|
|
"useDefineForClassFields": true,
|
2025-08-25 17:42:56 +00:00
|
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
2025-07-07 18:25:13 +00:00
|
|
|
"module": "ESNext",
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
|
|
|
|
|
/* Bundler mode */
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"moduleDetection": "force",
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
|
|
|
|
|
/* Linting */
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"noUncheckedSideEffectImports": true
|
|
|
|
|
},
|
2026-04-12 19:58:11 +00:00
|
|
|
"include": [
|
|
|
|
|
"src",
|
|
|
|
|
"../customer-invoices/src/web/proformas/update/ui/blocks/selected-recipient/customer-view-dialog.tsx",
|
|
|
|
|
"../customer-invoices/src/web/proformas/update/ui/blocks/selected-recipient/customer-card.tsx",
|
|
|
|
|
"../customer-invoices/src/web/proformas/update/ui/blocks/selected-recipient/selected-recipient-empty-card.tsx"
|
|
|
|
|
],
|
2025-07-07 18:25:13 +00:00
|
|
|
"exclude": ["node_modules"]
|
|
|
|
|
}
|