Files
sf-sim/packages/sim-consumidor-objenious/tsconfig.json

38 lines
657 B
JSON
Raw Normal View History

2026-01-08 13:36:52 +01:00
{
"extends": "../../tsconfig.json",
"compilerOptions": {
2026-01-30 14:53:18 +01:00
"outDir": "../../dist",
"rootDir": "../../",
"paths": {
"#config/*": [
"config/*"
],
"#shared/*": [
"../../packages/sim-shared/*"
],
"#adapters/*": [
"adapters/*",
"infrastructure/*"
],
"#domain/*": [
"domain/*"
],
"#ports/*": [
"ports/*"
],
"#tests/*": [
"__tests__/*"
],
"sim-shared/*": [
"../sim-shared/*"
]
}
2026-01-08 13:36:52 +01:00
},
"exclude": [
"node_modules"
],
"include": [
"**/*.ts",
"../../packages/sim-shared/**/*.ts"
2026-01-08 13:36:52 +01:00
]
}