diff options
author | Rob Palmer <rob.palmer2@gmail.com> | 2021-01-21 05:38:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-21 16:38:15 +1100 |
commit | 8bef29fd74f24e3682069a1188386d90805a9904 (patch) | |
tree | 255362559ee53b85d1912315099a54630f1f957e /docs/typescript | |
parent | 413f79a4941d266ca1e6b61de80f83b16f6a4a4e (diff) |
docs: update implied tsconfig for "useDefineForClassFields" (#9196)
Diffstat (limited to 'docs/typescript')
-rw-r--r-- | docs/typescript/configuration.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/typescript/configuration.md b/docs/typescript/configuration.md index ff2570718..4ab09dc6b 100644 --- a/docs/typescript/configuration.md +++ b/docs/typescript/configuration.md @@ -89,7 +89,8 @@ this: "lib": ["deno.window"], "module": "esnext", "strict": true, - "target": "esnext" + "target": "esnext", + "useDefineForClassFields": true } } ``` |