Farmbot-Web-App/tsconfig.json
Rick Carlino a8773ed475
Restrict move_abs tool selection to active tools only (#544)
* Debugging webpack config part I

* Debugging webpack config part II

* interim_email claim

* Update `clean` npm task

* ¯\_(ツ)_/¯

* TODO: Move generateList() into mapStateToProps

* 👏 remove deprecated props

* Restrict move_abs to active tools
2017-11-28 18:01:35 -06:00

31 lines
589 B
JSON

{
"compilerOptions": {
"lib": [
"es7",
"dom",
"es2017.object"
],
"target": "es5",
"module": "esnext",
"moduleResolution": "node",
"jsx": "react",
"experimentalDecorators": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"allowUnreachableCode": false,
"strictNullChecks": true,
"sourceMap": true,
"allowJs": true,
"pretty": true,
"removeComments": true
},
"exclude": [
"node_modules",
"typings",
"public"
],
"compileOnSave": false,
"buildOnSave": false
}