mirror of
https://github.com/anomalyco/opentui.git
synced 2026-09-19 01:26:03 +08:00
aabb8ec6a4
Extract examples, assets, install.sh, and the standalone build script into a new workspace so they consume the public package surface (@opentui/core, @opentui/three, @opentui/keymap) instead of reaching into sibling internals. This makes examples a consumer of the published API. Drop the inherited browser export condition that prevented jimp from resolving its node entry, which broke the standalone build.
21 lines
512 B
JSON
21 lines
512 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ESNext", "DOM"],
|
|
"target": "ESNext",
|
|
"module": "NodeNext",
|
|
"moduleDetection": "force",
|
|
"allowJs": true,
|
|
"moduleResolution": "NodeNext",
|
|
"verbatimModuleSyntax": true,
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"types": ["bun", "node", "three"]
|
|
},
|
|
"exclude": ["dist"]
|
|
}
|