feat: combine TUI UX from alexhancock/tui-goodness with publishing config from jackamadeo/package-tui (#7683)

Co-authored-by: Jack Amadeo <jamadeo@squareup.com>
This commit is contained in:
Alex Hancock
2026-03-06 14:22:37 -05:00
committed by GitHub
parent 178197923e
commit a36ca9a07b
27 changed files with 4101 additions and 429 deletions
+5 -4
View File
@@ -1,14 +1,15 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"module": "NodeNext",
"moduleResolution": "nodenext",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"outDir": "./dist",
"rootDir": "./src"
"rootDir": "./src",
},
"include": ["src"]
"include": ["src"],
}