Compare commits

...

2 Commits

Author SHA1 Message Date
43d31fdffb undid change 2022-06-06 21:18:06 -05:00
daaaf1c405 fixed padding 2022-06-06 21:17:59 -05:00
2 changed files with 2 additions and 5 deletions

View File

@@ -73,7 +73,7 @@ ${(Object.keys(meta) as Array<keyof UserDataMetaFull>)
key in keyConversion key in keyConversion
? keyConversion[key as keyof typeof keyConversion] ? keyConversion[key as keyof typeof keyConversion]
: key : key
key_str = key_str.padStart(12, ' ') key_str = key_str.padEnd(12, ' ')
if (typeof val === 'boolean') { if (typeof val === 'boolean') {
if (val) return `// @${key_str}` if (val) return `// @${key_str}`

View File

@@ -13,8 +13,5 @@
"rootDir": "./src", "rootDir": "./src",
"outDir": "./lib", "outDir": "./lib",
"moduleResolution": "node" "moduleResolution": "node"
}, }
"files": [
"index.d.ts"
]
} }