Mute
6034adae3c
another absolutely massive diff * Disabled keyboard handler for focus management, the club got better at this * Input history redone entirely, the code contains comments * Completion now takes cursor position into account * Dropped autoremoval of service messages in favour of future manual deletion * Tons of typechecking cleanup and style improvements * The code now has zero errors on the strictest TS settings I know
26 lines
582 B
JSON
26 lines
582 B
JSON
{
|
|
"include": [
|
|
"node_modules/bc-stubs/bc/**/*.d.ts",
|
|
"node_modules/bondage-club-mod-sdk/dist/**/*.d.ts",
|
|
"ambient.d.ts",
|
|
"mbchc.mjs",
|
|
"server.js"
|
|
],
|
|
"compilerOptions": {
|
|
"target": "es2023",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strict": true,
|
|
"noEmit": true
|
|
}
|
|
}
|