mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-13 04:24:14 +00:00
aac0176ca2
* 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
25 lines
544 B
JSON
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
|
|
}
|
|
}
|