mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-07-13 07:04:50 -06:00

- 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.
37 lines
971 B
JSON
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"
|
|
]
|
|
} |