Skip to content

Commit 98823a4

Browse files
quote keys in tsconfig
1 parent b33d5e7 commit 98823a4

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

src/pages/docs/resources/typescript.md

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

2828
```json5
2929
{
30-
compilerOptions: {
30+
"compilerOptions": {
3131
// minimum required configuration
32-
target: "es2020",
33-
module: "preserve",
34-
moduleResolution: "bundler",
35-
allowImportingTsExtensions: true,
36-
noEmit: true,
32+
"target": "es2020",
33+
"module": "preserve",
34+
"moduleResolution": "bundler",
35+
"allowImportingTsExtensions": true,
36+
"noEmit": true,
3737

3838
// additional recommended configuration
39-
lib: ["ES2020", "DOM", "DOM.Iterable"],
40-
verbatimModuleSyntax: true,
41-
erasableSyntaxOnly: true,
39+
"lib": ["ES2020", "DOM", "DOM.Iterable"],
40+
"verbatimModuleSyntax": true,
41+
"erasableSyntaxOnly": true,
4242
},
4343

44-
exclude: ["./public/", "./greenwood/", "node_modules"],
44+
"exclude": ["./public/", "./greenwood/", "node_modules"],
4545
}
4646
```
4747

0 commit comments

Comments
 (0)