Files
.emacs.d/modules/languages/siren-typescript.el
Jim Myhrberg fe6a4e7ce5 fix(elisp): add lexical-binding comment to all files to suppress new Emacs 31 warnings
I've set `lexical-binding` to `nil` in all Emacs Lisp files to suppress
the warnings introduced in Emacs 31 requiring all elisp files to have a
`lexical-binding` comment.

This retains the default behavior of dynamic binding when no
`lexical-binding` comment is present. With it set to `t` across the
board, various things break, and fixing those is a task for another day.
2025-06-29 12:23:03 +01:00

39 lines
963 B
EmacsLisp

;;; siren-typescript.el --- jimeh's Emacs Siren: typescript-mode configuration. -*- lexical-binding: nil; -*-
;;; Commentary:
;; Basic configuration for typescript-mode.
;;; Code:
;; Requires Emacs 29.x or later for built-in treesit support.
(when (fboundp 'typescript-ts-mode)
(require 'siren-flycheck)
(require 'siren-js)
(require 'siren-lsp)
(require 'siren-treesit)
(use-package typescript-ts-mode
:straight (:type built-in)
:mode "\\.ts\\'"
:hook
(typescript-ts-mode . siren-typescript-mode-setup)
(typescript-ts-mode . siren-lsp-js-mode-setup)
:custom
(typescript-ts-mode-indent-offset 2)
:config
(siren-treesit-auto-ensure-grammar 'typescript))
(use-package tsx-ts-mode
:straight (:type built-in)
:mode "\\.tsx\\'"
:hook
(tsx-ts-mode . siren-lsp-js-mode-setup)
:config
(siren-treesit-auto-ensure-grammar 'tsx)))
(provide 'siren-typescript)
;;; siren-typescript.el ends here