tui/tsconfig.json
saberzero1 d1d51a626e
chore: add centralized type declarations and .prettierignore
- Add types/globals.d.ts with centralized type declarations
- Add .prettierignore with dist entry
2026-03-16 18:55:00 +01:00

20 lines
498 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"jsxImportSource": "@opentui/react",
"lib": ["ESNext", "DOM"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"allowJs": true,
"outDir": "dist",
"rootDir": ".",
"declaration": false,
"types": ["node", "react"]
},
"include": ["src/**/*.tsx", "src/**/*.ts", "types"],
"exclude": ["dist", "node_modules"]
}