bug: quaternion?

This commit is contained in:
2025-06-07 23:02:21 +09:00
parent 6e09946bf1
commit 2ba0ffc78b
2 changed files with 8 additions and 12 deletions

View File

@@ -1,19 +1,18 @@
{ {
"name": "computercraft-vs", "name": "computercraft-vs",
"version": "1.0.3", "version": "1.0.4",
"description": "", "description": "",
"license": "ISC", "license": "ISC",
"author": "", "author": "",
"type": "commonjs", "type": "commonjs",
"types": "types/index.d.ts", "types": "types/index.d.ts",
"main": "./dist/main", "main": "index.js",
"scripts": { "scripts": {
"build": "tstl" "build": "tstl"
}, },
"devDependencies": { "devDependencies": {
"@eslint/js": "^9.27.0", "@eslint/js": "^9.27.0",
"@typescript-to-lua/language-extensions": "^1.19.0", "@typescript-to-lua/language-extensions": "^1.19.0",
"computercraft-ts": "latest",
"eslint": "^9.27.0", "eslint": "^9.27.0",
"globals": "^16.2.0", "globals": "^16.2.0",
"luamin": "^1.0.4", "luamin": "^1.0.4",

View File

@@ -4,20 +4,17 @@
"target": "ESNext", "target": "ESNext",
"lib": ["ESNext"], "lib": ["ESNext"],
"moduleResolution": "Node", "moduleResolution": "Node",
"types": [ "types": ["./types/index", "@typescript-to-lua/language-extensions"],
"computercraft-ts", "plugins": [{ "name": "typescript-tstl-plugin" }],
"@typescript-to-lua/language-extensions",
"./types/index"
],
"strict": true, "strict": true,
"declaration": true,
"outDir": "dist/", "outDir": "dist/",
"rootDir": "src/",
"noImplicitAny": false "noImplicitAny": false
}, },
"tstl": { "tstl": {
"luaTarget": "JIT", "luaTarget": "5.4",
"buildMode": "library", "noHeader": true,
"luaBundle": "bundle.lua",
"luaBundleEntry": "src/main.ts",
"noImplicitSelf": true "noImplicitSelf": true
}, },
"include": ["src/**/*"] "include": ["src/**/*"]