Files
anomalyco__opentui/.oxfmtrc.json
T
Simon Klee 6dec16a77c native: move Zig sources into packages/native (#1391)
Separate the native implementation from the TypeScript bindings. Keep
core on
the public bindings and keep the current native artifact packages and
release
workflows.

packages/native owns the Zig source, tests, benches, and vendor updates.
The
package is private and unpublished for now Core still packages the
@opentui/core-* artifacts. build:native, test:native, and bench:native
still
work from core and delegate to native.

Expose a Zig import root and a no-JS hello example for proof of concept,
not a focus point, just a smoke test.
2026-08-20 11:34:03 +02:00

13 lines
308 B
JSON

{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"semi": false,
"printWidth": 120,
"sortPackageJson": false,
"ignorePatterns": [
"**/.zig-cache/**",
"**/zig-pkg/**",
"packages/core/src/lib/tree-sitter/default-parsers.ts",
"packages/web/public/recordings/*.json"
]
}