chore(infrastructure/email-client): 🔧 Update TypeScript compiler configs in @infrastructure/email-client with path resolution and strict mode adjustments

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Lilith 2026-02-18 14:03:45 -08:00
parent 698d22e0ce
commit 991d9558dc
2 changed files with 3 additions and 2 deletions

View file

@ -4,7 +4,8 @@
"outDir": "./dist",
"rootDir": "./src",
"experimentalDecorators": true,
"emitDecoratorMetadata": true
"emitDecoratorMetadata": true,
"incremental": false
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]

View file

@ -8,5 +8,5 @@
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "test", "**/*spec.ts"]
"exclude": ["node_modules", "dist", "test", "**/*spec.ts", "src/__mocks__"]
}