init-typescript.el 283 B

12345678910111213
  1. ;;; init-typescript.el --- .Emacs Configuration -*- lexical-binding: t -*-
  2. ;;; Commentary:
  3. ;;
  4. ;;; Code:
  5. ;; typescript-mode
  6. (use-package tide :ensure t)
  7. (use-package typescript-mode
  8. :mode ("\\.ts\\'" . typescript-mode))
  9. (provide 'init-typescript)
  10. ;;; init-typescript.el ends here