MyCrypto/tsconfig.json
HenryNguyen5 f39787152e Fix Miscellaneous Types (#635)
* Add repo wide prettier command to prepush

* Make config file explict, remove formatAll to prepush

* Fix react router typings

* Add more typings

* Fix event typings,  fix transition children
2017-12-19 16:46:34 -06:00

29 lines
591 B
JSON

{
"compilerOptions": {
"outDir": "./dist/",
"sourceMap": true,
"strictNullChecks": true,
"module": "esnext",
"jsx": "react",
"target": "es5",
"allowJs": true,
"baseUrl": "./common/",
"lib": [
"es2017",
"dom"
],
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"noEmitOnError": false,
"noUnusedLocals": true,
"noUnusedParameters": true
},
"include": [
"./common/",
"spec",
"./node_modules/types-rlp/index.d.ts"
],
"awesomeTypescriptLoaderOptions": {
"transpileOnly": true
}
}