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 f77f8d1 commit eb048a3Copy full SHA for eb048a3
docs/tsconfig.json.md
@@ -156,7 +156,7 @@ $ yarn add --dev @tsconfig/deno
156
}
157
```
158
159
-## compileOptions
+## compilerOptions
160
161
`compilerOptions`属性用来定制编译行为。这个属性可以省略,这时编译器将使用默认设置。
162
docs/utility.md
@@ -467,7 +467,7 @@ type Mutable<T> = {
467
468
上面代码中,`-readonly`表示去除属性的只读标志。
469
470
-相应地,`+readonly`就表示增加只读标志,等同于`readonly`。因此,`ReadOnly<Type>`的实现也可以写成下面这样。
+相应地,`+readonly`就表示增加只读标志,等同于`readonly`。因此,`Readonly<Type>`的实现也可以写成下面这样。
471
472
```typescript
473
type Readonly<T> = {
0 commit comments