mirror of
https://github.com/desktop/desktop
synced 2024-10-30 17:25:09 +00:00
34ad8198b4
This rule will catch the error when directly passing a dispatcher method to a component without going through an intermediary bound instance method first.
15 lines
343 B
JSON
15 lines
343 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "es6",
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"sourceMap": false
|
|
},
|
|
"compileOnSave": false
|
|
}
|