Skip to content

Commit 51f2f68

Browse files
wrsmith108claude
andcommitted
fix(ci): add @types/node for TypeScript node globals
Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent dd01894 commit 51f2f68

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

package-lock.json

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,18 @@
4646
"claude-plugin": {
4747
"name": "Linear",
4848
"description": "Manage Linear issues, projects, and teams with MCP tools, SDK automation, and GraphQL API patterns",
49-
"skills": ["."]
49+
"skills": [
50+
"."
51+
]
5052
},
5153
"dependencies": {
5254
"@linear/sdk": "^68.1.0"
5355
},
5456
"devDependencies": {
55-
"typescript": "^5.7.0",
56-
"eslint": "^9.0.0",
5757
"@eslint/js": "^9.0.0",
58+
"@types/node": "^25.0.10",
59+
"eslint": "^9.0.0",
60+
"typescript": "^5.7.0",
5861
"typescript-eslint": "^8.0.0"
5962
}
6063
}

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"noImplicitAny": false,
1212
"allowImportingTsExtensions": true,
1313
"noPropertyAccessFromIndexSignature": false,
14-
"noUncheckedIndexedAccess": false
14+
"noUncheckedIndexedAccess": false,
15+
"types": ["node"]
1516
},
1617
"include": ["scripts/**/*.ts"],
1718
"exclude": ["node_modules"]

0 commit comments

Comments
 (0)