github-desktop/tslint-rules/tsconfig.json
Markus Olsson 34ad8198b4 Add a tentative first iteration of a custom tslint rule
This rule will catch the error when directly passing a dispatcher
method to a component without going through an intermediary bound
instance method first.
2016-11-17 11:42:01 +01:00

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
}