We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32ac9cd commit 4431c87Copy full SHA for 4431c87
README.md
@@ -0,0 +1,23 @@
1
+# @syntaxs/compiler `v0.0.1-alpha`
2
+
3
+> Main compiler module of Syntax Script.
4
5
+This module is used to either compile a syntax script project, or create diagnostic reports for language servers.
6
7
+# Usage
8
9
+Using the compiler.
10
11
+```typescript
12
+// Compiling
13
+import { SyntaxScriptCompiler } from '@syntaxs/compiler';
14
15
+const compiler = new SyntaxScriptCompiler('/path/to/root/dir','/path/to/out/dir','ts');
16
+compiler.compile();
17
+```
18
19
+Creating diagnostic reports.
20
21
22
+//TODO
23
0 commit comments