File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616 node-version : ' 22'
1717 cache : ' npm'
1818 - run : npm ci
19- - run : npx tsc --noEmit
19+ - run : npm run typecheck
2020
2121 build-sdk :
2222 needs : typecheck
Original file line number Diff line number Diff line change 3232 "build:client" : " npm run build -w packages/api-client" ,
3333 "build:mcp" : " npm run build -w packages/mcp-server" ,
3434 "start:mcp" : " npm run start -w packages/mcp-server" ,
35- "test" : " node packages/mcp-server/node_modules/.bin/tsx --test tests/*.test.ts"
35+ "test" : " node packages/mcp-server/node_modules/.bin/tsx --test tests/*.test.ts" ,
36+ "typecheck" : " tsc -b --noEmit"
3637 },
3738 "repository" : {
3839 "type" : " git" ,
Original file line number Diff line number Diff line change 1+ {
2+ "compilerOptions" : {
3+ "target" : " ES2022" ,
4+ "module" : " ESNext" ,
5+ "moduleResolution" : " bundler" ,
6+ "strict" : true ,
7+ "esModuleInterop" : true ,
8+ "skipLibCheck" : true ,
9+ "forceConsistentCasingInFileNames" : true ,
10+ "resolveJsonModule" : true ,
11+ "declaration" : true ,
12+ "declarationMap" : true ,
13+ "sourceMap" : true
14+ },
15+ "references" : [
16+ { "path" : " packages/api-client" },
17+ { "path" : " packages/mcp-server" },
18+ { "path" : " packages/opencode-pequi-plugin" }
19+ ],
20+ "files" : []
21+ }
You can’t perform that action at this time.
0 commit comments