Skip to content
This repository was archived by the owner on Jun 24, 2025. It is now read-only.

Commit 696784b

Browse files
authored
Merge pull request #1896 from TriliumNext/renovate/typescript-5.x
chore(deps): update dependency typescript to v5.8.3
2 parents ba009ba + dd7df13 commit 696784b

File tree

12 files changed

+139
-255
lines changed

12 files changed

+139
-255
lines changed

docs/Developer Guide/Developer Guide/Project Structure/CKEditor/Plugin migration guide.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ In the newly copied package, go to `package.json` and edit:
3535
3. Similarly, update `vitest` dependencies to match the monorepo one.
3636
4. Remove the `prepare` entry from the `scripts` section.
3737
5. Change `build:dist` to simply `build` in order to integrate it with NX.
38+
6. In `tsconfig.dist.json`, change `typings/types` to `../typings/types.d.ts` to be compatible with the latest TypeScript version.
3839

3940
## Step 4. Install missing dependencies and build errors
4041

packages/ckeditor5-admonition/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"stylelint": "^16.0.0",
4848
"stylelint-config-ckeditor5": ">=9.1.0",
4949
"ts-node": "^10.9.1",
50-
"typescript": "5.0.4",
50+
"typescript": "5.8.3",
5151
"vite-plugin-svgo": "~2.0.0",
5252
"vitest": "^3.0.5",
5353
"webdriverio": "^9.0.7"

packages/ckeditor5-admonition/tsconfig.dist.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"rootDir": "./src",
77
"composite": false,
88
"types": [
9-
"./typings/types"
9+
"../typings/types.d.ts"
1010
]
1111
}
1212
}

packages/ckeditor5-footnotes/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"stylelint": "^16.0.0",
4949
"stylelint-config-ckeditor5": ">=9.1.0",
5050
"ts-node": "^10.9.1",
51-
"typescript": "5.0.4",
51+
"typescript": "5.8.3",
5252
"vite-plugin-svgo": "~2.0.0",
5353
"vitest": "^3.0.5",
5454
"webdriverio": "^9.0.7"

packages/ckeditor5-footnotes/tsconfig.dist.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"rootDir": "./src",
77
"composite": false,
88
"types": [
9-
"./typings/types"
9+
"../typings/types.d.ts"
1010
]
1111
}
1212
}

packages/ckeditor5-keyboard-marker/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"stylelint": "^16.0.0",
5151
"stylelint-config-ckeditor5": ">=9.1.0",
5252
"ts-node": "^10.9.1",
53-
"typescript": "5.0.4",
53+
"typescript": "5.8.3",
5454
"vite-plugin-svgo": "~2.0.0",
5555
"vitest": "^3.0.5",
5656
"webdriverio": "^9.0.7"

packages/ckeditor5-keyboard-marker/tsconfig.dist.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"rootDir": "./src",
77
"composite": false,
88
"types": [
9-
"./typings/types"
9+
"../typings/types.d.ts"
1010
]
1111
}
1212
}

packages/ckeditor5-math/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"stylelint": "^16.0.0",
5252
"stylelint-config-ckeditor5": ">=9.1.0",
5353
"ts-node": "^10.9.1",
54-
"typescript": "5.0.4",
54+
"typescript": "5.8.3",
5555
"vite-plugin-svgo": "~2.0.0",
5656
"vitest": "^3.0.5",
5757
"webdriverio": "^9.0.7"

packages/ckeditor5-math/tsconfig.dist.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"rootDir": "./src",
77
"composite": false,
88
"types": [
9-
"./typings/types"
9+
"../typings/types.d.ts"
1010
]
1111
}
1212
}

packages/ckeditor5-mermaid/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"stylelint": "^16.0.0",
5151
"stylelint-config-ckeditor5": ">=9.1.0",
5252
"ts-node": "^10.9.1",
53-
"typescript": "5.0.4",
53+
"typescript": "5.8.3",
5454
"vite-plugin-svgo": "~2.0.0",
5555
"vitest": "^3.0.5",
5656
"webdriverio": "^9.0.7"

0 commit comments

Comments
 (0)