Skip to content

Commit 3876768

Browse files
fix formatting
1 parent 1addb4c commit 3876768

1 file changed

Lines changed: 19 additions & 19 deletions

File tree

src/pages/docs/resources/typescript.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -25,25 +25,25 @@ The below steps will help you get up and running with TypeScript in your Greenwo
2525

2626
<app-ctc-block variant="snippet" heading="tsconfig.json">
2727

28-
```json5
29-
{
30-
compilerOptions: {
31-
// minimum required configuration
32-
target: "es2020",
33-
module: "preserve",
34-
moduleResolution: "bundler",
35-
allowImportingTsExtensions: true,
36-
noEmit: true,
37-
38-
// additional recommended configuration
39-
lib: ["ES2020", "DOM", "DOM.Iterable"],
40-
verbatimModuleSyntax: true,
41-
erasableSyntaxOnly: true,
42-
},
43-
44-
exclude: ["./public/", "./greenwood/", "node_modules"],
45-
}
46-
```
28+
```json5
29+
{
30+
compilerOptions: {
31+
// minimum required configuration
32+
target: "es2020",
33+
module: "preserve",
34+
moduleResolution: "bundler",
35+
allowImportingTsExtensions: true,
36+
noEmit: true,
37+
38+
// additional recommended configuration
39+
lib: ["ES2020", "DOM", "DOM.Iterable"],
40+
verbatimModuleSyntax: true,
41+
erasableSyntaxOnly: true,
42+
},
43+
44+
exclude: ["./public/", "./greenwood/", "node_modules"],
45+
}
46+
```
4747

4848
</app-ctc-block>
4949

0 commit comments

Comments
 (0)