Farmbot-Web-App/tsconfig.json

32 lines
660 B
JSON
Raw Permalink Normal View History

2017-06-29 12:54:02 -06:00
{
"compilerOptions": {
"lib": [
"es7",
"dom",
"es2017.object"
],
"allowJs": true,
"allowUnreachableCode": false,
2019-02-04 07:32:26 -07:00
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"jsx": "react",
2017-10-13 10:30:23 -06:00
"module": "esnext",
"moduleResolution": "node",
2019-02-04 13:54:17 -07:00
"esModuleInterop": true,
2017-06-29 12:54:02 -06:00
"noImplicitAny": true,
"noImplicitThis": true,
2017-08-02 09:14:08 -06:00
"noUnusedLocals": true,
"noUnusedParameters": true,
"pretty": true,
"removeComments": true,
"sourceMap": true,
"strictNullChecks": true,
"target": "es5",
2017-06-29 12:54:02 -06:00
},
"include": [
"frontend"
2017-06-29 12:54:02 -06:00
],
"compileOnSave": false,
"buildOnSave": false
}