initial commit

This commit is contained in:
2025-06-07 13:10:40 +09:00
commit 3555ea434e
7 changed files with 263 additions and 0 deletions

20
tsconfig.json Normal file
View File

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