mirror of
https://github.com/FranP-code/Baileys.git
synced 2025-10-13 00:32:22 +00:00
!BREAKING_CHANGE This was generally a poor design decision on my part to add something like this -- primarily because it could increment the chat unread counter a 100 times for a single message
21 lines
544 B
JSON
21 lines
544 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2018",
|
|
"module": "commonjs",
|
|
"experimentalDecorators": true,
|
|
"allowJs": false,
|
|
"checkJs": false,
|
|
"outDir": "lib",
|
|
"strict": false,
|
|
"skipLibCheck": true,
|
|
"noImplicitThis": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": true,
|
|
"lib": ["es2020", "esnext.array", "DOM"]
|
|
},
|
|
"include": ["./src/**/*.ts"],
|
|
"exclude": ["node_modules", "src/Tests/*", "src/Binary/GenerateStatics.ts"]
|
|
}
|