This commit is contained in:
2021-06-23 21:29:51 -05:00
parent 3b0ee59f47
commit 655edc3d16
45 changed files with 963 additions and 0 deletions

15
ts-lua/tsconfig.json Normal file
View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "esnext",
"lib": ["esnext"],
"moduleResolution": "node",
"types": ["lua-types/5.4"],
"strict": true,
"typeRoots": [
"./types"
]
},
"tstl": {
"luaTarget": "JIT"
}
}