spacemacs/layers/+lang/typescript/layers.el
Maximilian Wolff f971ee7120
[typescript] Require tide layer as it is used as formatter by default
I have also updated the installation instructions as tsserver is not
longer available as single executable on npm. Also I've made sure that
modes register for tide backend only if it is really intended to.
2020-03-08 13:05:31 +01:00

17 lines
502 B
EmacsLisp

;;; layers.el --- typescript Layer layers File for Spacemacs
;;
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
;;
;; Author: Chris Bowdon <c.bowdon@bath.edu>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(configuration-layer/declare-layer-dependencies '(node javascript prettier tide))
(when (and (boundp 'typescript-backend)
(eq typescript-backend 'lsp))
(configuration-layer/declare-layer-dependencies '(lsp)))