- Add shared startup model sync helper and integrate it into dashboard, serve, and daemon command startup flows - Introduce opencode-go model sync setting in core schema/types and expose it in dashboard settings UI - Add CLI regression tests covering startup model sync behavior and command wiring - Document the new startup model sync setting and related CLI behavior updates Fusion-Task-Id: FN-3227
17 lines
464 B
JSON
17 lines
464 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"rootDir": "..",
|
|
"jsx": "react-jsx",
|
|
"moduleResolution": "bundler",
|
|
"module": "ESNext",
|
|
"noEmit": true,
|
|
"types": ["vitest/globals", "@testing-library/jest-dom", "node", "vite/client"],
|
|
"paths": {
|
|
"node-pty": ["./src/types/node-pty/index.d.ts"]
|
|
}
|
|
},
|
|
"include": ["app/**/*"],
|
|
"exclude": ["app/**/*.test.ts", "app/**/*.test.tsx", "app/**/__tests__/**/*"]
|
|
}
|