Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .claude/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"permissions": {
"allow": [
"Bash(cat:*)",
"Bash(echo:*)",
"Bash(gh issue view:*)",
"Bash(gh label list:*)",
Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@
},
"devDependencies": {
"@biomejs/biome": "^2.0.5",
"@changesets/cli": "^2.29.8"
"@changesets/cli": "^2.29.8",
"@types/node": "^18.19.130",
"shx": "^0.4.0",
"tsx": "^4.20.6",
"typescript": "5.9.3"
}
}
23 changes: 4 additions & 19 deletions packages/cli-hooks/jsconfig.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,9 @@
{
"$schema": "https://json.schemastore.org/jsconfig",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice 💯

"extends": "../../tsconfig.base.json",
"compilerOptions": {
"module": "es2022",
"moduleResolution": "node",
"esModuleInterop": true,
"checkJs": true,

"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,

"baseUrl": ".",
"paths": {
"*": ["./types/*"]
}
"checkJs": true
},
"include": ["src/**/*"],
"jsdoc": {
"out": "support/jsdoc",
"access": "public"
}
"include": ["src/**/*"]
}
5 changes: 1 addition & 4 deletions packages/cli-hooks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,8 @@
},
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/node": "^18.19.130",
"@types/semver": "^7.5.6",
"@types/sinon": "^21.0.0",
"shx": "^0.4.0",
"sinon": "^21.0.0",
"typescript": "5.9.3"
"sinon": "^21.0.0"
}
}
7 changes: 1 addition & 6 deletions packages/cli-test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,10 @@
"winston": "^3.8.2"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.6",
"@types/node": "^18.19.130",
"@types/sinon": "^21.0.0",
"cross-env": "^10.0.0",
"shx": "^0.4.0",
"sinon": "^21.0.0",
"tsx": "^4.20.6",
"typedoc": "^0.28.7",
"typedoc-plugin-markdown": "^4.7.1",
"typescript": "5.9.3"
"typedoc-plugin-markdown": "^4.7.1"
}
}
18 changes: 1 addition & 17 deletions packages/cli-test/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,6 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "dist",
"skipLibCheck": true,
"sourceMap": true
},
"extends": "@tsconfig/recommended/tsconfig.json",
"extends": "../../tsconfig.base.json",
"include": ["src/**/*"],
"jsdoc": {
"out": "support/jsdoc",
"access": "public"
},
"exclude": ["src/**/*.test.*"]
}
6 changes: 1 addition & 5 deletions packages/logger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,7 @@
"test:unit": "npm run build && node --experimental-test-coverage --test-reporter=spec --test-reporter-destination=stdout --test-reporter=lcov --test-reporter-destination=lcov.info --test-reporter=junit --test-reporter-destination=test-results.xml --import tsx --test src/index.test.ts"
},
"devDependencies": {
"@types/node": "^18.19.130",
"shx": "^0.4.0",
"tsx": "^4.20.6",
"typedoc": "^0.28.7",
"typedoc-plugin-markdown": "^4.7.1",
"typescript": "^5.9.3"
"typedoc-plugin-markdown": "^4.7.1"
}
}
31 changes: 2 additions & 29 deletions packages/logger/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,6 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "dist",
"skipLibCheck": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"baseUrl": ".",
"paths": {
"*": ["./types/*"]
},
"esModuleInterop": true
// Not using this setting because it's only used to require the package.json file, and that would change the
// structure of the files in the dist directory because package.json is not located inside src. It would be nice
// to use import instead of require(), but it's not worth the tradeoff of restructuring the build (for now).
// "resolveJsonModule": true,
},
"extends": "../../tsconfig.base.json",
"include": ["src/**/*"],
"exclude": ["src/**/*.test.*"],
"jsdoc": {
"out": "support/jsdoc",
"access": "public"
}
"exclude": ["src/**/*.test.*"]
}
6 changes: 1 addition & 5 deletions packages/oauth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,10 @@
"jsonwebtoken": "^9"
},
"devDependencies": {
"@types/node": "^18.19.130",
"@types/sinon": "^21",
"rewiremock": "^3",
"shx": "^0.4.0",
"sinon": "^21",
"tsx": "^4.20.6",
"typedoc": "^0.28.7",
"typedoc-plugin-markdown": "^4.7.0",
"typescript": "5.9.3"
"typedoc-plugin-markdown": "^4.7.0"
}
}
31 changes: 2 additions & 29 deletions packages/oauth/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,6 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "es5",
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📣 note: Since we support a minimum node18 which supports es2022 this changes seems alright to me, but I want to note this will now match the shared es2017 target.

"module": "commonjs",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "dist",
"skipLibCheck": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"baseUrl": ".",
"paths": {
"*": ["./types/*"]
},
"esModuleInterop": true
// Not using this setting because it's only used to require the package.json file, and that would change the
// structure of the files in the dist directory because package.json is not located inside src. It would be nice
// to use import instead of require(), but it's not worth the tradeoff of restructuring the build (for now).
// "resolveJsonModule": true,
},
"extends": "../../tsconfig.base.json",
"include": ["src/**/*"],
"exclude": ["src/**/spec-utils.ts", "src/**/*.test.*"],
"jsdoc": {
"out": "support/jsdoc",
"access": "public"
}
"exclude": ["src/**/spec-utils.ts", "src/**/*.test.*"]
}
6 changes: 1 addition & 5 deletions packages/rtm-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,10 @@
"ws": "^8"
},
"devDependencies": {
"@types/node": "^18.19.130",
"@types/sinon": "^17",
"@types/ws": "^8",
"shx": "^0.3.2",
"sinon": "^21",
"tsx": "^4.20.6",
"typedoc": "^0.28.7",
"typedoc-plugin-markdown": "^4.7.1",
"typescript": "5.9.3"
"typedoc-plugin-markdown": "^4.7.1"
}
}
31 changes: 2 additions & 29 deletions packages/rtm-api/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,6 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "dist",
"skipLibCheck": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"baseUrl": ".",
"paths": {
"*": ["./types/*"]
},
"esModuleInterop": true
// Not using this setting because it's only used to require the package.json file, and that would change the
// structure of the files in the dist directory because package.json is not located inside src. It would be nice
// to use import instead of require(), but it's not worth the tradeoff of restructuring the build (for now).
// "resolveJsonModule": true,
},
"extends": "../../tsconfig.base.json",
"include": ["src/**/*"],
"exclude": ["src/**/*.spec.*"],
"jsdoc": {
"out": "support/jsdoc",
"access": "public"
}
"exclude": ["src/**/*.test.*"]
}
7 changes: 1 addition & 6 deletions packages/socket-mode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,12 @@
"ws": "^8"
},
"devDependencies": {
"@types/node": "^18.19.130",
"@tsconfig/recommended": "^1.0.7",
"@types/proxyquire": "^1.3.31",
"@types/sinon": "^21",
"nodemon": "^3.1.0",
"proxyquire": "^2.1.3",
"shx": "^0.4.0",
"sinon": "^21",
"tsx": "^4.20.6",
"typedoc": "^0.28.7",
"typedoc-plugin-markdown": "^4.7.0",
"typescript": "5.9.3"
"typedoc-plugin-markdown": "^4.7.0"
}
}
19 changes: 3 additions & 16 deletions packages/socket-mode/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,9 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"declaration": true,
"declarationMap": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "dist",
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true
"resolveJsonModule": true
},
"extends": "@tsconfig/recommended/tsconfig.json",
"include": ["src/**/*"],
"exclude": ["src/**/*.test.*"],
"jsdoc": {
"out": "support/jsdoc",
"access": "public"
}
"exclude": ["src/**/*.test.*"]
}
4 changes: 1 addition & 3 deletions packages/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,9 @@
"test:types": "tsd"
},
"devDependencies": {
"shx": "^0.4.0",
"tsd": "^0.33.0",
"typedoc": "^0.28.7",
"typedoc-plugin-markdown": "^4.7.1",
"typescript": "^5.9.3"
"typedoc-plugin-markdown": "^4.7.1"
},
"tsd": {
"directory": "test"
Expand Down
31 changes: 2 additions & 29 deletions packages/types/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,6 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "dist",
"skipLibCheck": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"baseUrl": ".",
"paths": {
"*": ["./types/*"]
},
"esModuleInterop": true
// Not using this setting because it's only used to require the package.json file, and that would change the
// structure of the files in the dist directory because package.json is not located inside src. It would be nice
// to use import instead of require(), but it's not worth the tradeoff of restructuring the build (for now).
// "resolveJsonModule": true,
},
"extends": "../../tsconfig.base.json",
"include": ["src/**/*"],
"exclude": ["src/**/*.spec.*"],
"jsdoc": {
"out": "support/jsdoc",
"access": "public"
}
"exclude": ["src/**/*.test.*"]
}
7 changes: 1 addition & 6 deletions packages/web-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,19 +63,14 @@
"retry": "^0.13.1"
},
"devDependencies": {
"@tsconfig/recommended": "^1",
"@types/busboy": "^1.5.4",
"@types/node": "^18.19.130",
"@types/sinon": "^21",
"busboy": "^1",
"nock": "^14",
"shx": "^0.4.0",
"sinon": "^21",
"tsx": "^4.20.6",
"tsd": "^0.33.0",
"typedoc": "^0.28.7",
"typedoc-plugin-markdown": "^4.7.1",
"typescript": "5.9.3"
"typedoc-plugin-markdown": "^4.7.1"
},
"tsd": {
"directory": "test/types"
Expand Down
19 changes: 2 additions & 17 deletions packages/web-api/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,6 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"declaration": true,
"declarationMap": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "dist",
"skipLibCheck": true,
"sourceMap": true
},
"extends": "@tsconfig/recommended/tsconfig.json",
"extends": "../../tsconfig.base.json",
"include": ["src/**/*"],
"exclude": ["src/**/*.test.*"],
"jsdoc": {
"out": "support/jsdoc",
"access": "public"
}
"exclude": ["src/**/*.test.*"]
}
Loading