Skip to content

Commit 85e4ffc

Browse files
committed
Dependency update and minor fixes
1 parent b796e65 commit 85e4ffc

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

libraries/math/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"import": "./lib/index.js"
1414
},
1515
"type": "module",
16-
"types": "lib/types/math-public.d.ts",
16+
"types": "./lib/types/math-public.d.ts",
1717
"repository": {
1818
"type": "git",
1919
"url": "https://github.com/Mojang/minecraft-scripting-libraries.git",

package-lock.json

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

tools/core-build-tasks/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"import": "./lib/index.js",
77
"require": "./lib-cjs/index.js"
88
},
9-
"types": "lib/index.d.ts",
9+
"types": "./lib/index.d.ts",
1010
"author": "Raphael Landaverde ([email protected])",
1111
"contributors": [
1212
{
@@ -37,7 +37,7 @@
3737
"prettier": "^2.8.2",
3838
"rimraf": "^3.0.2",
3939
"eslint": "^9.17.0",
40-
"typescript": "^5.2.2",
40+
"typescript": "^5.7.2",
4141
"vitest": "^0.34.6",
4242
"zip-lib": "^0.7.3"
4343
},

tools/eslint-plugin-minecraft-linting/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "eslint-plugin-minecraft-linting",
33
"version": "1.2.7",
44
"main": "./lib/index.js",
5-
"types": "lib/index.d.ts",
5+
"types": "./lib/index.d.ts",
66
"license": "MIT",
77
"repository": {
88
"type": "git",

tools/tsconfig/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
These are base shared `tsconfig.json`s from which all other `tsconfig.json`'s inherit from.
44

5-
By default we target module ESNext with resolution of form bundler. The reason for this is because packages built here are mainly for use in Minecraft where we have ESM support and no need for file extensions.
5+
Module resolution and format is decided by consuming packages, but with a preference to ESM as that is what the Minecraft runtime natively supports.

0 commit comments

Comments
 (0)