mirror of
https://github.com/MincoMK/create-computercraft.git
synced 2025-12-10 14:43:23 +00:00
21 lines
536 B
JSON
21 lines
536 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/TypeScriptToLua/TypeScriptToLua/master/tsconfig-schema.json",
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": ["ESNext"],
|
|
"types": ["computercraft-ts"],
|
|
"moduleResolution": "Node",
|
|
"strict": true,
|
|
"plugins": [{ "name": "typescript-tstl-plugin" }],
|
|
"outDir": "dist",
|
|
"noImplicitAny": false
|
|
},
|
|
"tstl": {
|
|
"luaTarget": "5.4",
|
|
"noHeader": true,
|
|
"luaBundle": "bundle.lua",
|
|
"luaBundleEntry": "src/main.ts"
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|