MyCrypto/tsconfig.json
HenryNguyen5 04eaa08d6c Shepherd MVP Integration (#1413)
* initial mvp

* First functioning pass

* Add token balance shim

* Add working web3 implementation

* Fix tests

* Fix tsc errors

* Implement token batch splitting

* Undo logger change

* Fix linting errors

* Revert makeconfig change

* Add typing to token proxy + use string interpolation

* Remove useless parameter

* Remove logging

* Use type coercion to fix proxied methods

* Update shepherd

* Update to typescript 2.8.1

* Fix merged typings

* Address PR comments

* replace myc-shepherd with mycrypto-shepherd
2018-04-06 15:52:48 -05:00

35 lines
801 B
JSON

{
"compilerOptions": {
"outDir": "./dist/",
"sourceMap": true,
"strictNullChecks": true,
"module": "es2015",
"jsx": "react",
"target": "es2015",
"allowJs": true,
"baseUrl": "./common/",
"paths": {
"shared*": ["../shared*"],
"types*": ["../shared/types*"]
},
"lib": ["es2017", "dom"],
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"noEmitOnError": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitAny": true
},
"include": [
"./common/",
"./electron-app/",
"./shared/",
"spec",
"./node_modules/types-rlp/index.d.ts",
"./node_modules/mycrypto-shepherd/dist/lib/types/btoa.d.ts"
],
"awesomeTypescriptLoaderOptions": {
"transpileOnly": true
}
}