@ore-ui-types/libs
v1.0.2
Published
Library type definitions for Minecraft Bedrock Edition's Ore UI scripting environment.
Maintainers
Readme
Ore UI Types - Libs
Library type definitions for Minecraft Bedrock Edition's Ore UI scripting environment.
To use this package, you should set either "noLib": true or "lib": [] in the compilerOptions of your tsconfig.json or jsconfig.json file.
Then install the package and add @ore-ui-types/libs to the types array in your tsconfig.json or jsconfig.json file.
Example tsconfig.json:
{
"compilerOptions": {
"target": "esnext",
"module": "nodenext",
"moduleResolution": "nodenext",
"baseUrl": "./",
"declaration": true,
"sourceMap": true,
"lib": [],
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noUncheckedIndexedAccess": true,
"verbatimModuleSyntax": true,
"noFallthroughCasesInSwitch": true,
"exactOptionalPropertyTypes": true,
"noEmit": true,
"types": ["@ore-ui-types/libs"],
"typeRoots": []
}
}