rOSs/tsconfig.json
2024-08-23 03:20:09 +03:00

22 lines
492 B
JSON

{
"$schema": "https://raw.githubusercontent.com/TypeScriptToLua/TypeScriptToLua/master/tsconfig-schema.json",
"compilerOptions": {
"target": "ESNext",
"lib": ["ESNext"],
"moduleResolution": "NodeNext",
"module": "NodeNext",
"types": [],
"strict": true
},
"include": [
"src/**/*",
"libs/**/*",
],
"tstl": {
"luaTarget": "universal",
"luaBundleEntry": "src/index.ts",
"luaBundle": "rOSs.lua",
"luaLibImport": "require",
}
}