Uecko_ERP/modules/customers/tsconfig.json

34 lines
873 B
JSON
Raw Normal View History

2025-07-07 18:25:13 +00:00
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@erp/customer-invoices/*": ["./src/*"]
},
"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
},
2025-08-26 18:55:59 +00:00
"include": ["src", "../core/src/api/helpers/extract-or-push-error.ts"],
2025-07-07 18:25:13 +00:00
"exclude": ["node_modules"]
}