This commit is contained in:
2025-05-28 23:08:36 +09:00
commit d659e60899
6 changed files with 1292 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",
"strict": true,
"plugins": [{ "name": "typescript-tstl-plugin" }],
"outDir": "dist",
"types": ["./types/index"],
"noImplicitAny": false
},
"tstl": {
"luaTarget": "5.4",
"noHeader": true,
"luaBundle": "bundle.lua",
"luaBundleEntry": "src/main.ts"
},
"include": ["src/**/*"]
}