Spacemacs JavaScript tide 配置问题

已配置

     lsp
     tide
     ;;============ Languages ==============
     (javascript :variables
                 javascript-backend 'tide
                 ;;javascript-lsp-linter nil
                 javascript-import-tool 'import-js
                 js2-basic-offset 2
                 js2-indent-level 2
                 javascript-fmt-on-save t
                 )

     (typescript :variables
                 typescript-backend 'tide)
+-- [email protected]
+-- [email protected]
+-- [email protected]
+-- [email protected]
+-- [email protected]
+-- [email protected]
`-- [email protected]
(defun dotspacemacs/user-init ()
   (setq configuration-layer-elpa-archives
      '(("melpa-cn" . "http://mirrors.tuna.tsinghua.edu.cn/elpa/melpa/")
        ("org-cn"     . "http://mirrors.tuna.tsinghua.edu.cn/elpa/org/")
        ("gnu-cn"    . "http://mirrors.tuna.tsinghua.edu.cn/elpa/gnu/")))

  (add-to-list 'exec-path "e:\\nodist\\bin" t)
  )

写JavaScript没有补全 是什么原因

(add-hook 'js2-mode-hook #'setup-tide-mode) 掉了

自己看tide没有添加下列代码

(defun setup-tide-mode()
    "Setup funciton fot tide"
  	(interactive)
    (tide-setup)
    (flycheck-mode +1)
    (setq flycheck-check-syntax-automatically '(save mode-enabled))
    (tide-hl-identifier-mode +1)
    (company-mode +1)
    )

(add-hook 'js2-mode-hook #'setup-tide-mode)