mirror of
https://github.com/quartz-community/tui.git
synced 2026-07-22 03:00:23 +00:00
- Add types/globals.d.ts with centralized type declarations - Add .prettierignore with dist entry
20 lines
498 B
JSON
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"]
|
|
}
|