Uecko_ERP/tsconfig.base.json

21 lines
496 B
JSON
Raw Normal View History

2025-01-29 16:01:25 +00:00
{
2025-01-29 19:02:59 +00:00
"compilerOptions": {
2025-02-03 13:12:36 +00:00
"target": "ES2022",
2025-01-29 19:02:59 +00:00
"module": "CommonJS",
"outDir": "./dist",
2025-02-03 13:12:36 +00:00
"sourceMap": true,
2025-01-29 19:02:59 +00:00
"strict": true,
2025-02-03 13:12:36 +00:00
"pretty": true,
"removeComments": true /* Do not emit comments to output. */,
2025-01-29 19:02:59 +00:00
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": "./",
"paths": {
"@shared/*": ["packages/shared/src/*"]
}
},
"include": ["apps", "packages"],
"exclude": ["node_modules", "dist"]
}