mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-04 09:50:07 +00:00
* Do some code changes & run prettier and eslint
* Fix test:test-type script
* Apply code review suggestions
* update heartbeat interval & add a reason for the specific value
* Fix husky error
* Update to TS 5.5
And use ${configDir}
* Fix test.json tsconfig base
---------
Co-authored-by: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com>
33 lines
842 B
JSON
33 lines
842 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "Default",
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"module": "es2022",
|
|
"rootDir": "${configDir}/src",
|
|
"outDir": "${configDir}/dist",
|
|
"tsBuildInfoFile": "${configDir}/dist/.tsbuildinfo",
|
|
"composite": false,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"inlineSources": false,
|
|
"isolatedModules": true,
|
|
"moduleResolution": "node",
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"preserveWatchOutput": true,
|
|
"skipLibCheck": true,
|
|
"skipDefaultLibCheck": true,
|
|
"strict": true,
|
|
"incremental": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["${configDir}/src"],
|
|
"ts-node": {
|
|
"swc": true,
|
|
"esm": true
|
|
}
|
|
}
|