$ node --disable-warning=ExperimentalWarning test.mts
error TS0: Configuration not found.
path/to/test.css:1:2 - error TS0: CSS selector is not used.
1 .foo { color: red; }
~~~
Created
January 25, 2025 05:12
-
-
Save mizdra/a7ee55b63440f5d6f1b22f634cd39336 to your computer and use it in GitHub Desktop.
Report diagnostics with TypeScript Compiler API.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ts from 'typescript'; | |
const host: ts.FormatDiagnosticsHost = { | |
getCurrentDirectory: () => '/app', | |
getCanonicalFileName: (fileName) => (ts.sys.useCaseSensitiveFileNames ? fileName : fileName.toLowerCase()), | |
getNewLine: () => ts.sys.newLine, | |
}; | |
const file = ts.createSourceFile( | |
'/app/path/to/test.css', | |
'.foo { color: red; }', | |
ts.ScriptTarget.ESNext, | |
false, | |
ts.ScriptKind.Unknown, | |
); | |
const diagnostic1: ts.Diagnostic = { | |
category: ts.DiagnosticCategory.Error, | |
code: 0, | |
file: undefined, | |
start: undefined, | |
length: undefined, | |
messageText: 'Configuration not found.', | |
}; | |
const diagnostic2: ts.Diagnostic = { | |
category: ts.DiagnosticCategory.Error, | |
code: 0, | |
file, | |
start: 1, | |
length: 3, | |
messageText: 'CSS selector is not used.', | |
}; | |
const formatted = ts.formatDiagnosticsWithColorAndContext([diagnostic1, diagnostic2], host); | |
ts.sys.write(formatted + host.getNewLine()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment