mirror of
https://github.com/SikongJueluo/cc-utils.git
synced 2025-11-04 19:27:50 +08:00
37 lines
1.1 KiB
JSON
37 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/MCJack123/TypeScriptToLua/master/tsconfig-schema.json",
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": ["ESNext"],
|
|
"baseUrl": ".",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"types": [
|
|
"@sikongjueluo/advanced-peripherals-types",
|
|
"@sikongjueluo/toml2lua-types",
|
|
"@sikongjueluo/dkjson-types",
|
|
"@jackmacwindows/lua-types/cc",
|
|
"@jackmacwindows/craftos-types",
|
|
"@jackmacwindows/cc-types",
|
|
"@typescript-to-lua/language-extensions"
|
|
],
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@jackmacwindows/craftos-types": ["./types/craftos"],
|
|
"@jackmacwindows/lua-types/cc": ["./types/cc"],
|
|
"@sikongjueluo/advanced-peripherals-types": [
|
|
"./types/advanced-peripherals"
|
|
],
|
|
"@sikongjueluo/toml2lua-types": ["./types/toml2lua"],
|
|
"@sikongjueluo/dkjson-types": ["./types/dkjson"]
|
|
}
|
|
},
|
|
"tstl": {
|
|
"luaTarget": "CC",
|
|
"luaLibImport": "require-minimal",
|
|
"tstlVerbose": true,
|
|
"noImplicitSelf": true
|
|
},
|
|
"include": ["./*.ts", "./src/**/*.ts", "./types/**/*.ts"]
|
|
}
|