Skip to content

Commit 2286f07

Browse files
committed
Fought like hell to get tsc, eslint, pnpm working after upgrades.
1 parent c070e0f commit 2286f07

33 files changed

+327
-235
lines changed

.eslintignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
./dist
1+
dist
22
./configs
33
node_modules
4-
./jest.config.js
4+
jest.config.js
5+
jest.setup.js

.eslintrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
],
1717
"rules": {
1818
"import/no-unresolved": "off",
19+
"object-shorthand": "warn",
1920
"@typescript-eslint/no-explicit-any": "off",
2021
"@typescript-eslint/no-non-null-assertion": "off",
2122
"@typescript-eslint/non-nullable-type-assertion-style": "warn"

.npmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
auto-install-peers=false
1+
auto-install-peers=true

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"typescript.tsdk": "node_modules/typescript/lib"
3+
}

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"README.md"
3737
],
3838
"dependencies": {
39-
"@typescript-eslint/utils": "^5.55.0",
39+
"@typescript-eslint/utils": "^6.4.0",
4040
"is-html": "^2.0.0",
4141
"jsx-ast-utils": "^3.3.3",
4242
"kebab-case": "^1.0.2",
@@ -50,15 +50,16 @@
5050
"@rollup/plugin-commonjs": "^22.0.2",
5151
"@rollup/plugin-json": "^4.1.0",
5252
"@rollup/plugin-node-resolve": "^14.1.0",
53+
"@tsconfig/node16": "^16.1.0",
5354
"@types/eslint": "^8.40.2",
5455
"@types/fs-extra": "^9.0.13",
5556
"@types/is-html": "^2.0.0",
5657
"@types/jest": "^27.5.2",
5758
"@types/markdown-magic": "^1.0.1",
5859
"@types/node": "^16.18.16",
5960
"@types/prettier": "^2.7.2",
60-
"@typescript-eslint/eslint-plugin": "^5.55.0",
61-
"@typescript-eslint/parser": "^5.55.0",
61+
"@typescript-eslint/eslint-plugin": "^6.4.0",
62+
"@typescript-eslint/parser": "^6.4.0",
6263
"eslint": "^8.43.0",
6364
"eslint-plugin-eslint-plugin": "^5.0.8",
6465
"eslint-plugin-import": "^2.27.5",
@@ -77,7 +78,7 @@
7778
"rollup": "^2.79.1",
7879
"ts-jest": "^29.1.1",
7980
"ts-node": "^10.9.1",
80-
"typescript": "^5.0.2"
81+
"typescript": "^5.1.6"
8182
},
8283
"peerDependencies": {
8384
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"

0 commit comments

Comments
 (0)