From 6fbe3a9eed796f723d033352301f58a664a33979 Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Mon, 15 Jun 2026 17:14:05 -0500 Subject: [PATCH] chore(format): formatting changes --- backend/datamart/datamart.controller.ts | 1 + tsconfig.json.bak | 41 ------------------------- 2 files changed, 1 insertion(+), 41 deletions(-) delete mode 100644 tsconfig.json.bak diff --git a/backend/datamart/datamart.controller.ts b/backend/datamart/datamart.controller.ts index de76198..42b5de0 100644 --- a/backend/datamart/datamart.controller.ts +++ b/backend/datamart/datamart.controller.ts @@ -37,6 +37,7 @@ const lstDbRun = async (data: Data) => { if (data.options) { if (data.name === "psiInventory") { const ids = data.options.articles.split(",").map((id: any) => id.trim()); + const whse = data.options.whseToInclude ? data.options.whseToInclude .split(",") diff --git a/tsconfig.json.bak b/tsconfig.json.bak deleted file mode 100644 index ac9cabf..0000000 --- a/tsconfig.json.bak +++ /dev/null @@ -1,41 +0,0 @@ -{ - "compilerOptions": { - "target": "ESNext", - "module": "NodeNext", - "moduleResolution": "nodenext", - "strict": true, - "verbatimModuleSyntax": true, - "types": ["node", "better-auth"], - "jsx": "react-jsx", - "outDir": "./dist", - "removeComments": true, - "allowJs": false, - "rootDir": "./backend", - "noUnusedLocals": true, - "noUnusedParameters": true, - "noFallthroughCasesInSwitch": true, - "noUncheckedIndexedAccess": true, - "exactOptionalPropertyTypes": true, - "baseUrl": ".", - "paths": { - "@/*": ["backend/*"], - "@features/*": ["backend/features/*"], - "@shared/*": ["backend/shared/*"], - "@config/*": ["backend/config/*"] - }, - "esModuleInterop": true, - "skipLibCheck": true, - "forceConsistentCasingInFileNames": true, - "resolveJsonModule": true, - //"allowImportingTsExtensions": true, - "noEmit": false - }, - "include": ["backend/**/*"], - "exclude": [ - "node_modules", - "frontend", - "dist", - "lstDocs", - "database/testFiles", - "scripts" - ]} \ No newline at end of file