evolution-api/tsconfig.json
Davidson Gomes 616ae0a7eb Update ESLint configuration, Dockerfile, and package dependencies; add GitHub Actions workflow for code quality checks
- Changed ESLint parser options to use 'module' as source type.
- Updated Dockerfile to remove force flag from npm install command.
- Upgraded 'mime' package from version 3.0.0 to 4.0.0 in package.json.
- Added '@types/mime' as a development dependency.
- Updated TypeScript configuration to use 'CommonJS' module format.
- Introduced a new GitHub Actions workflow for checking code quality, including linting and build checks.
2025-01-09 17:04:33 -03:00

37 lines
971 B
JSON

{
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declaration": true,
"target": "es2020",
"module": "CommonJS",
"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": "Node"
},
"exclude": ["node_modules", "./test", "./dist", "./prisma"],
"include": [
"src/**/*",
"src/**/*.json"
]
}