mirror of
https://github.com/anomalyco/opentui.git
synced 2026-09-19 01:26:03 +08:00
f1c511780e
See `docs/keymap/overview.mdx` for details. --------- Co-authored-by: Simon Klee <hello@simonklee.dk>
30 lines
680 B
JSON
30 lines
680 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"outDir": "./dist",
|
|
"noEmit": false,
|
|
"rootDir": ".",
|
|
"paths": {
|
|
"@opentui/react": ["./src/framework-react.d.ts"],
|
|
"@opentui/solid": ["./src/framework-solid.d.ts"]
|
|
},
|
|
"skipLibCheck": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler"
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": [
|
|
"**/*.test.ts",
|
|
"**/*.test.tsx",
|
|
"**/*.spec.ts",
|
|
"**/*.spec.tsx",
|
|
"**/tests/**/*",
|
|
"src/keymap-benchmark.ts",
|
|
"tests/**/*",
|
|
"node_modules/**/*"
|
|
]
|
|
}
|