This commit is contained in:
2025-05-29 12:44:25 +09:00
commit 23b81017ec
14 changed files with 390 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{
"$schema": "https://raw.githubusercontent.com/TypeScriptToLua/TypeScriptToLua/master/tsconfig-schema.json",
"compilerOptions": {
"target": "ESNext",
"lib": ["ESNext"],
"moduleResolution": "Node",
"types": ["computercraft-ts"],
"strict": true,
"declaration": true,
"outDir": "dist/",
"rootDir": "src/"
},
"tstl": {
"luaTarget": "JIT",
"buildMode": "library"
},
"include": ["src/**/*"]
}