- Add @fusion/tui as a new private workspace package with ink and React dependencies - Configure TypeScript with JSX (react-jsx), strict mode, and Node16 module resolution - Add minimal src/index.tsx entry point with package exports - Update root README.md with tui package reference - Add pnpm-lock.yaml entries for ink, ink-text-input, and @types/react
12 lines
270 B
JSON
12 lines
270 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"jsx": "react-jsx",
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["src/**/*.test.ts", "src/**/*.test.tsx", "src/**/__tests__/**/*"]
|
|
}
|