Uecko_ERP/modules/factuges/tsconfig.json

34 lines
812 B
JSON
Raw Normal View History

2025-09-26 15:00:11 +00:00
{
2025-11-05 17:14:34 +00:00
"extends": "../../tsconfig.json",
2025-09-26 15:00:11 +00:00
"compilerOptions": {
"baseUrl": ".",
"paths": {
2026-03-16 17:45:45 +00:00
"@erp/factuges/*": ["./src/*"]
2025-09-26 15:00:11 +00:00
},
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "ES2022",
"useDefineForClassFields": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"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
},
"include": ["src"],
"exclude": ["node_modules"]
}