1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-24 09:18:09 +00:00

Make better import - clickthrough vscode

This commit is contained in:
Vladimir Volek 2018-08-14 15:06:48 +02:00
parent 52fcaa3d8c
commit b011184f3f
2 changed files with 16 additions and 16 deletions

16
jsconfig.json Normal file
View File

@ -0,0 +1,16 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"*": ["src/*"],
"components/*": ["./src/js/components/*"],
"config/*": ["./src/js/config/*"],
"constants/*": ["./src/js/constants/*"],
"support/*": ["./src/js/support/*"],
"actions/*": ["./src/js/actions/*"],
"reducers/*": ["./src/js/reducers/*"],
"utils/*": ["./src/js/utils/*"],
"services/*": ["./src/js/services/*"],
}
}
}

View File

@ -1,16 +0,0 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"*": [
"src/*"
],
"components/*": [
"./js/config/*"
],
"config/*": [
"./js/config/*"
]
}
}
}