Files
TI-FCYT-URBAN/bot-wsp/tsconfig.build.json
T
Valentin Romero 25d4ba6cc0 add bot wsp
2026-06-30 22:04:56 -03:00

11 lines
327 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"rootDir": "src", // origen de los .ts
"outDir": "dist", // destino de los .js
"incremental": false // opcional: fuerza build limpio siempre
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "dist", "**/*.spec.ts", "**/*.test.ts"]
}