Uecko_ERP/tsconfig.base.json
2025-01-29 20:02:59 +01:00

18 lines
384 B
JSON

{
"compilerOptions": {
"target": "ES6",
"module": "CommonJS",
"outDir": "./dist",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": "./",
"paths": {
"@shared/*": ["packages/shared/src/*"]
}
},
"include": ["apps", "packages"],
"exclude": ["node_modules", "dist"]
}