spacemacs/layers/+tools/tide/config.el

25 lines
628 B
EmacsLisp
Raw Normal View History

;;; config.el --- Tide Layer config file for Spacemacs. -*- lexical-binding: t -*-
;;
;; Copyright (c) 2012-2020 Sylvain Benner & Contributors
;;
;; Author: Thanh Vuong <thanhvg@gmail.com>
;; URL: https://github.com/thanhvg
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
;; variables
(defvar tide-jsconfig-content
"{\n\
\"compilerOptions\": {\n\
\"target\": \"es2017\",\n\
\"allowSyntheticDefaultImports\": true,\n\
\"noEmit\": true,\n\
\"checkJs\": true,\n\
\"jsx\": \"react\",\n\
\"lib\": [ \"dom\", \"es2017\" ]\n\
}\n\
}"
"Content of jsconfig.json file.")