make fields in signOrder optional

This commit is contained in:
TheJuze
2024-01-19 12:27:19 +03:00
parent 330fc513e5
commit fcc30178ab
6 changed files with 14 additions and 11 deletions

View File

@@ -22,7 +22,8 @@
"noUnusedLocals": true /* Enable error reporting when a local variables aren't read. */,
"noUnusedParameters": true /* Raise an error when a function parameter isn't read */,
"noUncheckedIndexedAccess": true,
"skipLibCheck": true /* Skip type checking all .d.ts files. */
"skipLibCheck": true, /* Skip type checking all .d.ts files. */
"exactOptionalPropertyTypes": false, /* allow ? in interfaces */
},
"ts-node": {
// Tell ts-node CLI to install the --loader automatically, explained below