MyCrypto/tsconfig.json
skubakdj aac0176ca2 Wallet Decrypt - Ledger (#238)
* add static vendor js libraries

* add ledger config

* add ledger components

* add ledger wallet

* bugfix: trezor, set dPath on change

* add rlp type package, update types

* change address to public

* update tslint script to exclude all files in directory

* revert to private address and use getAddress()

* remove unnecessary eslint line out of library files

* remove IWallet import

* Fix ts errors

* Remove version controlled vendor files from DLL
2017-10-05 16:29:14 -07:00

25 lines
544 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
},
"include": [
"./common/",
"./node_modules/types-rlp/index.d.ts",
"./node_modules/types-bn/index.d.ts"
],
"awesomeTypescriptLoaderOptions": {
"transpileOnly": true
}
}