Skip to content

Commit

Permalink
build: Update TypeScript to 4.8
Browse files Browse the repository at this point in the history
- Update vue-tsc to 0.40.5
- Update @typescript-eslint/eslint-plugin and /parser to 5.36.1
- Enable skipLibCheck to work around vuejs/core#6554

Change-Id: Ib37a458c23dc1093c3c9804f4fe0a9c389523453
  • Loading branch information
catrope authored and jenkins-bot committed Sep 9, 2022
1 parent cb6cf97 commit 6287f48
Show file tree
Hide file tree
Showing 9 changed files with 275 additions and 297 deletions.
549 changes: 263 additions & 286 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -35,8 +35,8 @@
"build-and-update-snapshots": "npm run build-all && npm run update-snapshots --workspaces --if-present"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"concurrently": "^6.3.0",
"cssbeautify": "^0.3.1",
"eslint": "^8.12.0",
Expand All @@ -48,6 +48,6 @@
"stylelint-config-wikimedia": "^0.13.0",
"stylelint-no-unsupported-browser-features": "^5.0.3",
"stylelint-order": "^5.0.0",
"typescript": "^4.6.2"
"typescript": "^4.8.2"
}
}
4 changes: 2 additions & 2 deletions packages/codex-docs/package.json
Expand Up @@ -44,10 +44,10 @@
"postcss": "^8.4.14",
"postcss-rtlcss": "^3.6.3",
"ts-jest": "^27.0.5",
"typescript": "^4.6.2",
"typescript": "^4.8.2",
"vite": "^3.0.9",
"vitepress": "^1.0.0-alpha.13",
"vue-docgen-cli": "^4.44.2",
"vue-tsc": "^0.33.6"
"vue-tsc": "^0.40.5"
}
}
2 changes: 1 addition & 1 deletion packages/codex-icons/package.json
Expand Up @@ -42,7 +42,7 @@
"@types/svgo": "^2.6.0",
"jest": "^27.3.1",
"svgo": "^2.8.0",
"typescript": "^4.6.2",
"typescript": "^4.8.2",
"vite": "^3.0.9"
}
}
4 changes: 2 additions & 2 deletions packages/codex-search/package.json
Expand Up @@ -40,9 +40,9 @@
"less": "^4.1.2",
"postcss": "^8.4.6",
"postcss-rtlcss": "^3.5.4",
"typescript": "^4.6.2",
"typescript": "^4.8.2",
"vite": "^3.0.9",
"vue-tsc": "^0.33.6"
"vue-tsc": "^0.40.5"
},
"peerDependencies": {
"vue": "^3.2.37"
Expand Down
1 change: 1 addition & 0 deletions packages/codex-search/tsconfig-build.json
Expand Up @@ -12,6 +12,7 @@
"types": [ "jest" ],
"allowJs": true,
"checkJs": true,
"skipLibCheck": true,
"declaration": true,
"declarationDir": "dist/types",
"emitDeclarationOnly": true
Expand Down
2 changes: 1 addition & 1 deletion packages/codex/package.json
Expand Up @@ -64,7 +64,7 @@
"ts-jest": "^27.0.5",
"typescript": "^4.6.2",
"vite": "^3.0.9",
"vue-tsc": "^0.33.6"
"vue-tsc": "^0.40.5"
},
"peerDependencies": {
"vue": "^3.2.37"
Expand Down
1 change: 1 addition & 0 deletions packages/codex/tsconfig-build.json
Expand Up @@ -13,6 +13,7 @@
"checkJs": true,
"lib": [ "esnext", "dom" ],
"types": [ "jest" ],
"skipLibCheck": true,
"declaration": true,
"declarationDir": "dist/types"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/codex/tsconfig.json
@@ -1,8 +1,7 @@
{
"extends": "./tsconfig-build.json",
"compilerOptions": {
"noEmit": true,
"skipLibCheck": true
"noEmit": true
},
"include": [
"src/**/*.ts",
Expand Down

0 comments on commit 6287f48

Please sign in to comment.