- Removed Passport.js integration from the authentication module, replacing it with a custom implementation for local and JWT authentication. - Introduced a new `JoseJwtService` for handling JWT operations, enhancing security and flexibility. - Updated the Dockerfile and entrypoint scripts to streamline Prisma client generation and migration commands. - Cleaned up package.json files by removing unused dependencies and ensuring consistency across applications. - Enhanced SFTP configuration with optional host key fingerprint for improved security. - Updated test files to reflect changes in the authentication logic and added necessary imports for Jest.
12 lines
260 B
JSON
12 lines
260 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"noEmit": false,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "test", "**/*.spec.ts", "**/*.test.ts"]
|
|
}
|