mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-01 20:46:08 +00:00

* feat: add support for new Discord application emojis features * feat: add support for new Discord application emojis features * feat: applications emojis routes * chore: switch typings provider * fix: unnecesary type * feat: magic bytes * chore: move api-types * chore: ? * fix: omg npm * chore: apply formatting * fix: for fast merge --------- Co-authored-by: Tony Supremacy <165050835+VanStk@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
38 lines
762 B
JSON
38 lines
762 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"target": "ESNext",
|
|
"lib": [
|
|
"ESNext",
|
|
"WebWorker"
|
|
],
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"sourceMap": false,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"preserveConstEnums": true,
|
|
/* Type Checking */
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"skipLibCheck": false,
|
|
"noErrorTruncation": true,
|
|
"outDir": "./lib",
|
|
"stripInternal": true,
|
|
},
|
|
"exclude": [
|
|
"**/lib",
|
|
"**/__test__"
|
|
],
|
|
"include": [
|
|
"src"
|
|
]
|
|
} |