mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
fix: add exactOptionalPropertyTypes
for configuration file JSON schema (#19647)
- fixes #19646
lines copied from:
8513fdcc29/src/schemas/json/tsconfig.json (L281-L286)
This commit is contained in:
parent
fbb6932934
commit
09af1a5fef
1 changed files with 6 additions and 0 deletions
|
@ -34,6 +34,12 @@
|
|||
"default": false,
|
||||
"markdownDescription": "Enable error reporting in type-checked JavaScript files.\n\nSee more: https://www.typescriptlang.org/tsconfig#checkJs"
|
||||
},
|
||||
"exactOptionalPropertyTypes": {
|
||||
"description": "Differentiate between undefined and not present when type checking",
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"markdownDescription": "Differentiate between undefined and not present when type checking\n\nSee more: https://www.typescriptlang.org/tsconfig#exactOptionalPropertyTypes"
|
||||
},
|
||||
"experimentalDecorators": {
|
||||
"description": "Enable experimental support for TC39 stage 2 draft decorators.",
|
||||
"type": "boolean",
|
||||
|
|
Loading…
Reference in a new issue