Uecko_ERP/tsconfig.base.json
2025-02-03 14:12:36 +01:00

21 lines
496 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "CommonJS",
"outDir": "./dist",
"sourceMap": true,
"strict": true,
"pretty": true,
"removeComments": true /* Do not emit comments to output. */,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": "./",
"paths": {
"@shared/*": ["packages/shared/src/*"]
}
},
"include": ["apps", "packages"],
"exclude": ["node_modules", "dist"]
}