From a6621977d9114509a05390ac0892b96154e91392 Mon Sep 17 00:00:00 2001 From: leoooy Date: Tue, 28 Dec 2021 23:29:49 +0800 Subject: [PATCH] fix: add jsconfig.json to support Peek/Go to Definition --- jsconfig.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 jsconfig.json diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000..d0b7c39 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,12 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "paths": { + "react/*":["packages/react/*"], + "reactDOM/*":["packages/reactDOM/*"], + "reactReconciler/*": ["packages/react-reconciler/*"], + "scheduler/*": ["packages/scheduler/*"], + "shared/*": ["packages/shared/*"], + } + } +} \ No newline at end of file