rOSs/tsconfig.json

25 lines
551 B
JSON
Raw Normal View History

2024-08-21 19:16:28 +00:00
{
"$schema": "https://raw.githubusercontent.com/TypeScriptToLua/TypeScriptToLua/master/tsconfig-schema.json",
"compilerOptions": {
"target": "ESNext",
"lib": ["ESNext"],
"moduleResolution": "NodeNext",
"module": "NodeNext",
2024-08-23 09:34:37 +00:00
"typeRoots": [
"./src/types"
],
2024-08-21 19:16:28 +00:00
"strict": true
},
2024-08-22 22:55:15 +00:00
"include": [
"src/**/*",
"libs/**/*",
2024-08-23 09:34:37 +00:00
"src/types/*.d.ts"
2024-08-22 22:55:15 +00:00
],
2024-08-21 19:16:28 +00:00
"tstl": {
2024-08-23 09:34:37 +00:00
"luaTarget": "5.4",
2024-08-21 19:16:28 +00:00
"luaBundleEntry": "src/index.ts",
2024-08-22 22:55:15 +00:00
"luaBundle": "rOSs.lua",
2024-08-23 09:34:37 +00:00
"luaLibImport": "require-minimal",
2024-08-21 19:16:28 +00:00
}
}