Update roblox-ts

This commit is contained in:
Ukendio 2024-10-21 19:31:51 +02:00
parent 96f706f8df
commit 3e79ff4c99
3 changed files with 4019 additions and 4028 deletions

8001
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -34,7 +34,7 @@
"eslint-plugin-prettier": "^4.0.0", "eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-roblox-ts": "^0.0.32", "eslint-plugin-roblox-ts": "^0.0.32",
"prettier": "^2.5.1", "prettier": "^2.5.1",
"roblox-ts": "^2.3.0", "roblox-ts": "^3.0.0",
"typescript": "^5.4.2", "typescript": "^5.4.2",
"vitepress": "^1.3.0" "vitepress": "^1.3.0"
}, },

View file

@ -1,26 +1,24 @@
{ {
"compilerOptions": { "compilerOptions": {
// required "allowSyntheticDefaultImports": true,
"allowSyntheticDefaultImports": true, "downlevelIteration": true,
"downlevelIteration": true, "jsx": "react",
"jsx": "react", "jsxFactory": "Roact.createElement",
"jsxFactory": "Roact.createElement", "jsxFragmentFactory": "Roact.Fragment",
"jsxFragmentFactory": "Roact.Fragment", "module": "commonjs",
"module": "commonjs", "moduleResolution": "Node",
"moduleResolution": "Node", "noLib": true,
"noLib": true, "resolveJsonModule": true,
"resolveJsonModule": true, "strict": true,
"strict": true, "target": "ESNext",
"target": "ESNext", "typeRoots": [
"typeRoots": ["node_modules/@rbxts"], "node_modules/@rbxts"
],
// configurable "rootDir": "lib",
"rootDir": "lib", "outDir": "out",
"outDir": "out", "baseUrl": "lib",
"baseUrl": "lib", "incremental": true,
"incremental": true, "tsBuildInfoFile": "out/tsconfig.tsbuildinfo",
"tsBuildInfoFile": "out/tsconfig.tsbuildinfo", "moduleDetection": "force"
"moduleDetection": "force"
} }
} }