msg.ts
Version:
MSG is the framework for make discord bot easily
41 lines (40 loc) • 1.32 kB
JSON
{
"compilerOptions": {
"target": "ESNext",
"module": "commonjs",
"lib": [
"es2015.symbol"
],
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist",
"rootDir": "./src",
"composite": true,
// "tsBuildInfoFile": "./tsBuildInfoFile",
"removeComments": true,
"isolatedModules": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
// "noImplicitReturns": true,
// "noFallthroughCasesInSwitch": true,
// "noUncheckedIndexedAccess": true,
// "noPropertyAccessFromIndexSignature": true,
"moduleResolution": "node",
"esModuleInterop": true,
"sourceRoot": "./dist",
"mapRoot": "./dist",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
}
}