mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-04 09:50:07 +00:00
* refactor: remove experimental-specifier-resolution flag * fix: listen on all interface * fix: tsconfig set target es2022 * refactor: use top level await * style: deno fmt * feat: add rabbitmq * fix: DEVELOPMENT env not working * style * feat: add using message queue * chore: readme add influx and rabbitmq info to node * chore: increase rest replica
34 lines
785 B
JSON
34 lines
785 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"module": "es2022",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"esModuleInterop": true,
|
|
"importHelpers": true,
|
|
"allowUnusedLabels": false,
|
|
"noImplicitOverride": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"strict": true,
|
|
"stripInternal": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"useUnknownInCatchVariables": false,
|
|
"allowUnreachableCode": false,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node"
|
|
},
|
|
"include": [
|
|
"./src/**/*",
|
|
".env"
|
|
],
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifierResolution": "node",
|
|
"swc": true
|
|
}
|
|
}
|