- packages/native/tsconfig.json: add types:["node"] so Buffer/process/ __dirname resolve correctly (root tsconfig has no lib/types for node) - scripts/check-sf-extension-inventory.mjs: add footer-config, undo-turn, review-code to HIDDEN_OR_ALIAS_SUBCOMMANDS (they are aliases for statusline, rewind, rubber-duck) - src/resources/extensions/sf/commands/catalog.js: add session-rename entry (real command handled in core.js, was missing from TOP_LEVEL_SUBCOMMANDS) - src/resources/extensions/sf/extension-manifest.json: add 19 commands that exist in catalog but were absent from provides.commands - src/resources/extensions/sf/guided-flow.js: remove showSmartEntry compat alias (no live imports — only a comment reference in headless-context.ts) - src/resources/extensions/sf/graph.js: remove graphFromDefinition compat alias build:core now passes end-to-end. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
9 lines
149 B
JSON
9 lines
149 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src"]
|
|
}
|