From b011184f3fc8fbf447475912a36b37157ffdedbf Mon Sep 17 00:00:00 2001 From: Vladimir Volek Date: Tue, 14 Aug 2018 15:06:48 +0200 Subject: [PATCH] Make better import - clickthrough vscode --- jsconfig.json | 16 ++++++++++++++++ jsonconfig.json | 16 ---------------- 2 files changed, 16 insertions(+), 16 deletions(-) create mode 100644 jsconfig.json delete mode 100644 jsonconfig.json diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 00000000..045103d3 --- /dev/null +++ b/jsconfig.json @@ -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/*"], + } + } +} \ No newline at end of file diff --git a/jsonconfig.json b/jsonconfig.json deleted file mode 100644 index 040f71ee..00000000 --- a/jsonconfig.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "compilerOptions": { - "baseUrl": ".", - "paths": { - "*": [ - "src/*" - ], - "components/*": [ - "./js/config/*" - ], - "config/*": [ - "./js/config/*" - ] - } - } -} \ No newline at end of file