Uecko_ERP/tsconfig.base.json

18 lines
384 B
JSON
Raw Normal View History

2025-01-29 16:01:25 +00:00
{
2025-01-29 19:02:59 +00:00
"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"]
}