evolution-api/tsconfig.json
Davidson Gomes d598c4ed0b Update ESLint configuration, Dockerfile, and package dependencies; refactor bot trigger logic
- Updated ESLint configuration to use TypeScript project references and adjusted parser options.
- Modified Dockerfile to include OpenSSL in both builder and final stages.
- Changed `mime` package version from `^4.0.6` to `^3.0.0` in `package.json` and updated TypeScript ESLint packages to `^6.21.0`.
- Refactored `findBotByTrigger` function to remove unnecessary settings repository parameter.
- Adjusted bot trigger logic in multiple controller files to streamline function calls.
2025-01-09 12:57:21 -03:00

37 lines
975 B
JSON

{
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declaration": true,
"target": "es2020",
"module": "NodeNext",
"rootDir": "./",
"resolveJsonModule": true,
"removeComments": true,
"outDir": "./dist",
"noEmitOnError": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": false,
"skipLibCheck": true,
"strictNullChecks": false,
"incremental": true,
"noImplicitAny": false,
"baseUrl": ".",
"paths": {
"@api/*": ["./src/api/*"],
"@cache/*": ["./src/cache/*"],
"@config/*": ["./src/config/*"],
"@exceptions": ["./src/exceptions"],
"@libs/*": ["./src/libs/*"],
"@utils/*": ["./src/utils/*"],
"@validate/*": ["./src/validate/*"]
},
"moduleResolution": "NodeNext"
},
"exclude": ["node_modules", "./test", "./dist", "./prisma"],
"include": [
"src/**/*",
"src/**/*.json"
]
}