mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-09 10:41:56 +00:00
574c628e61
* Add script to update tokens from ethereum-lists/tokens, commit output. * Force decimals to be integers. * Eth-lists-script Typescript (#1508) * Update scripts to handle collisions, and use typescript * Add comment on duplicateAddress validator * Lock dep on ts-node * Fix tsc errors * revert tokens update * make implicit anys
36 lines
818 B
JSON
36 lines
818 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": [
|
|
"./scripts",
|
|
"./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
|
|
}
|
|
}
|