Skip to content

Commit

Permalink
feat: add template interpolation service config support
Browse files Browse the repository at this point in the history
  • Loading branch information
Belar committed Jan 4, 2020
1 parent 13db2ad commit 3b7d35a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ const initializationOptions = {
format: {
defaultFormatterOptions: {},
options: {}
},
experimental: {
templateInterpolationService:
extensionConfig.experimental.templateInterpolationService
}
},
css: {},
Expand Down
14 changes: 14 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@
"title": "Validation",
"description": "Linting and error checking. *Requires reload to take effect.*",
"type": "object",
"order": 1,
"properties": {
"script": {
"title": "Script",
Expand All @@ -111,6 +112,19 @@
"order": 3
}
}
},
"experimental": {
"title": "Experimental",
"description": "*Disabled by default. Requires reload to take effect.*",
"type": "object",
"properties": {
"templateInterpolationService": {
"title": "Template interpolation service",
"description": "Support for diagnostics, references, jump to definition etc. in template",
"type": "boolean",
"default": false
}
}
}
}
}

0 comments on commit 3b7d35a

Please sign in to comment.