Spacemacs JavaScript tide 配置问题

自己看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)