From 4d2d52ef03862546496683f8c6b066f1db01c448 Mon Sep 17 00:00:00 2001 From: Francis <31059354+FrancisSano@users.noreply.github.com> Date: Fri, 27 Sep 2019 13:45:49 +0800 Subject: [PATCH] perf: VS Code support webpack alias file jump (#2609) --- jsconfig.json | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 jsconfig.json diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 00000000..958df046 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,9 @@ +{ + "compilerOptions": { + "baseUrl": "./", + "paths": { + "@/*": ["src/*"] + } + }, + "exclude": ["node_modules", "dist"] +} \ No newline at end of file