Uecko_ERP/apps/server/tsconfig.json

21 lines
486 B
JSON
Raw Normal View History

2025-01-28 14:01:02 +00:00
{
2025-05-02 21:43:51 +00:00
"extends": "@repo/typescript-config/express.json",
2025-01-28 14:01:02 +00:00
"compilerOptions": {
2025-11-03 19:45:03 +00:00
"noEmit": true,
"allowImportingTsExtensions": true,
"lib": ["ES2022"],
2025-05-04 20:06:57 +00:00
"baseUrl": "./src",
2025-01-29 19:02:59 +00:00
"paths": {
2025-05-04 20:06:57 +00:00
"@/*": ["*"]
2025-05-02 21:43:51 +00:00
},
2025-11-03 19:45:03 +00:00
"outDir": "./dist",
"rootDir": "./src",
"removeComments": true
2025-01-28 14:01:02 +00:00
},
2025-05-04 20:06:57 +00:00
//"files": ["src/index.ts"], // Esta opción compila sólo los archivos listados (y sus dependencias importadas).
2025-05-20 10:08:24 +00:00
"include": ["src"],
2025-11-03 19:45:03 +00:00
"exclude": ["node_modules", "dist"]
2025-01-28 14:01:02 +00:00
}