Skip to content

Commit

Permalink
Add metadata for TypeScript compiler option 'allowUmdGlobalAccess' to…
Browse files Browse the repository at this point in the history
… tsconfig and jsconfig schemas (#699)
  • Loading branch information
andrewbranch authored and madskristensen committed May 23, 2019
1 parent ceb630f commit 24f7773
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/schemas/json/jsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,10 @@
"description": "Emit '__importStar' and '__importDefault' helpers for runtime babel ecosystem compatibility and enable '--allowSyntheticDefaultImports' for typesystem compatibility. Requires TypeScript version 2.7 or later.",
"type": "boolean"
},
"allowUmdGlobalAccess": {
"description": "Allow accessing UMD globals from modules.",
"type": "boolean"
},
"keyofStringsOnly": {
"description": "Resolve 'keyof' to string valued property names only (no numbers or symbols). Requires TypeScript version 2.9 or later.",
"type": "boolean"
Expand Down
8 changes: 6 additions & 2 deletions src/schemas/json/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,12 @@
"incremental": {
"description": "Enable incremental compilation.",
"type": "boolean"
},
},
"tsBuildInfoFile": {
"description": "Specify file to store incremental compilation information.",
"type": "string"
},

"inlineSourceMap": {
"description": "Emit a single file with source maps instead of having a separate file.",
"type": "boolean"
Expand Down Expand Up @@ -458,6 +458,10 @@
"description": "Emit '__importStar' and '__importDefault' helpers for runtime babel ecosystem compatibility and enable '--allowSyntheticDefaultImports' for typesystem compatibility. Requires TypeScript version 2.7 or later.",
"type": "boolean"
},
"allowUmdGlobalAccess": {
"description": "Allow accessing UMD globals from modules.",
"type": "boolean"
},
"keyofStringsOnly": {
"description": "Resolve 'keyof' to string valued property names only (no numbers or symbols). Requires TypeScript version 2.9 or later.",
"type": "boolean"
Expand Down

0 comments on commit 24f7773

Please sign in to comment.