diff options
author | Jostein Kjønigsen <jostein@kjonigsen.net> | 2023-01-28 15:23:11 +0100 |
---|---|---|
committer | Theodor Thornhill <theo@thornhill.no> | 2023-02-04 09:19:40 +0100 |
commit | 873a0a15085629ac54fdee609c82b66583e3aefc (patch) | |
tree | 94b30f34a112c76fffb1d9bdd6d658736f768471 /lisp/progmodes/compile.el | |
parent | 3a64f81ebc153ad26331d9d43659a56bed3247bd (diff) | |
download | emacs-873a0a15085629ac54fdee609c82b66583e3aefc.tar.gz emacs-873a0a15085629ac54fdee609c82b66583e3aefc.tar.bz2 emacs-873a0a15085629ac54fdee609c82b66583e3aefc.zip |
Add support for TypeScript compilation to compile.el (bug#61104)
* lisp/progmodes/compile.el (compilation-error-regexp-alist-alist):
Add regexps.
Diffstat (limited to 'lisp/progmodes/compile.el')
-rw-r--r-- | lisp/progmodes/compile.el | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 5758eadf996..1e57d0b7bb2 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -649,6 +649,24 @@ File = \\(.+\\), Line = \\([0-9]+\\)\\(?:, Column = \\([0-9]+\\)\\)?" ;; we do not know what lines will follow. (guile-file "^In \\(.+\\..+\\):\n" 1 nil nil 0) (guile-line "^ *\\([0-9]+\\): *\\([0-9]+\\)" nil 1 2) + + ;; Typescript compilation prior to tsc version 2.7, "plain" format: + ;; greeter.ts(30,12): error TS2339: Property 'foo' does not exist. + (typescript-tsc-plain + ,(concat + "^[[:blank:]]*" + "\\([^(\r\n)]+\\)(\\([0-9]+\\),\\([0-9]+\\)):[[:blank:]]+" + "error [[:alnum:]]+: [^\r\n]+$") + 1 2 3 2) + + ;; Typescript compilation after tsc version 2.7, "pretty" format: + ;; src/resources/document.ts:140:22 - error TS2362: something. + (typescript-tsc-pretty + ,(concat + "^[[:blank:]]*" + "\\([^(\r\n)]+\\):\\([0-9]+\\):\\([0-9]+\\) - [[:blank:]]*" + "error [[:alnum:]]+: [^\r\n]+$") + 1 2 3 2) )) "Alist of values for `compilation-error-regexp-alist'.") |