@ublitzjs/core
Version:
 <br/>
42 lines (39 loc) • 1.12 kB
JSON
{
"compilerOptions": {
// Enable latest features
"lib": ["ESNext"],
"target": "ESNext",
"module": "esnext",
"moduleDetection": "force",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"skipLibCheck": false,
"noLib": false,
// Best practices
"strict": true,
"alwaysStrict": true,
"noFallthroughCasesInSwitch": true,
"removeComments": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": true,
"allowUnusedLabels": false,
"strictBuiltinIteratorReturn": true,
"strictBindCallApply": true,
"noUnusedParameters": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noUncheckedSideEffectImports": true,
"strictNullChecks": true,
"noImplicitThis": true,
"strictPropertyInitialization": true,
"strictFunctionTypes": true,
"allowUnreachableCode": false,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": false
}
}