From 484d71d8e179790f78e9c739c54102639beb7505 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=B8=85?= Date: Sat, 23 Jun 2018 07:51:21 +0800 Subject: [PATCH] vscode support alias --- .gitignore | 1 - jsconfig.json | 10 ++++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 jsconfig.json diff --git a/.gitignore b/.gitignore index 1da27e1b..c8978582 100755 --- a/.gitignore +++ b/.gitignore @@ -20,7 +20,6 @@ yarn-error.log yarn.lock package-lock.json *bak -jsconfig.json # visual studio code .history \ No newline at end of file diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 00000000..5475bee0 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,10 @@ +{ + "compilerOptions": { + "emitDecoratorMetadata": true, + "experimentalDecorators": true, + "baseUrl": ".", + "paths": { + "components/*": ["./src/components/*"] + } + } +} -- GitLab