computed-async-mobx
Version:
Define a computed by returning a Promise
29 lines • 701 B
JSON
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"noImplicitAny": true,
"strictNullChecks": true,
"sourceMap": true,
"declaration": true,
"alwaysStrict": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"jsx": "react",
"noFallthroughCasesInSwitch": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"outDir": "built",
"lib": [
"es5",
"es2015.promise",
"dom"
]
},
"exclude": [
"node_modules",
"built"
]
}