moomooio-client
Version:
MooMooIO-Client is a client-side wrapper API designed for the game MooMoo.io. This package aims to provide a simple yet powerful API for creating clones, mods, or plugins for MooMoo.io.
28 lines (26 loc) • 753 B
JSON
{
"exclude": ["node_modules", "dist"],
"include": ["src/", "test/"],
"compilerOptions": {
"noPropertyAccessFromIndexSignature": true,
"forceConsistentCasingInFileNames": true,
"strictPropertyInitialization": true,
"noUncheckedIndexedAccess": true,
"strictFunctionTypes": true,
"noUnusedParameters": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"strictNullChecks": true,
"esModuleInterop": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noImplicitAny": true,
"alwaysStrict": true,
"moduleResolution": "NodeNext",
"target": "ES2016",
"module": "ES2022",
"lib": ["ES2016", "DOM"],
"strict": true,
"noEmit": true
}
}