]> git.eshelyaron.com Git - emacs.git/commitdiff
Add support for TypeScript compilation to compile.el (bug#61104)
authorJostein Kjønigsen <jostein@kjonigsen.net>
Sat, 28 Jan 2023 14:23:11 +0000 (15:23 +0100)
committerTheodor Thornhill <theo@thornhill.no>
Sat, 4 Feb 2023 08:19:40 +0000 (09:19 +0100)
* lisp/progmodes/compile.el (compilation-error-regexp-alist-alist):
Add regexps.

lisp/progmodes/compile.el

index 5758eadf996f98ac28ed335098010b5014abce96..1e57d0b7bb204101a06129e0d2d65343dff16f45 100644 (file)
@@ -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'.")