feat(tts): add --edit flag and fix CLI argument parsing

- Improved input trimming and console output formatting in `tts.ts`
- Updated codespan colors in the markdown renderer for better visual contrast
- Disabled `noPropertyAccessFromIndexSignature` in tsconfig.json
This commit is contained in:
mitchell 2026-06-08 16:09:28 -04:00
parent 39cb573619
commit a03e6e94a9
4 changed files with 35 additions and 13 deletions

View file

@ -23,12 +23,12 @@
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": true,
"noPropertyAccessFromIndexSignature": false,
// Recommended Options
"strict": true,
"jsx": "react-jsx",
//"allowImportingTsExtensions": true,
"allowImportingTsExtensions": false,
"allowArbitraryExtensions": true,
"verbatimModuleSyntax": true,
"isolatedModules": true,