@procore/core-scripts
Version:
A CLI to enhance your development experience
17 lines (16 loc) • 401 B
JSON
{
"extends": "./tsconfig.app",
"compilerOptions": {
// Strict Checks
"strict": false,
"strictNullChecks": false,
"strictFunctionTypes": false,
"strictBindCallApply": false,
"strictPropertyInitialization": false,
// Linter Checks
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": false,
"noFallthroughCasesInSwitch": false
}
}