astro-vscode 0.19.4 → 0.19.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/package.json +8 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # astro-vscode
2
2
 
3
+ ## 0.19.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 421ab52: Added a new setting (`astro.typescript.allowArbitraryAttributes`) to enable support for arbitrary attributes
8
+ - Updated dependencies [421ab52]
9
+ - Updated dependencies [06e3c95]
10
+ - Updated dependencies [301dcfb]
11
+ - Updated dependencies [dd1283b]
12
+ - @astrojs/language-server@0.19.5
13
+
3
14
  ## 0.19.4
4
15
 
5
16
  ### Patch Changes
package/package.json CHANGED
@@ -23,7 +23,7 @@
23
23
  "color": "#FFBE2D",
24
24
  "theme": "dark"
25
25
  },
26
- "version": "0.19.4",
26
+ "version": "0.19.5",
27
27
  "author": "withastro",
28
28
  "license": "MIT",
29
29
  "publisher": "astro-build",
@@ -44,7 +44,7 @@
44
44
  "workspaceContains:astro.config.*"
45
45
  ],
46
46
  "dependencies": {
47
- "@astrojs/language-server": "0.19.4",
47
+ "@astrojs/language-server": "0.19.5",
48
48
  "@astrojs/ts-plugin": "0.2.1",
49
49
  "vscode-languageclient": "^8.0.1"
50
50
  },
@@ -100,6 +100,12 @@
100
100
  "title": "TypeScript",
101
101
  "description": "Enable TypeScript features"
102
102
  },
103
+ "astro.typescript.allowArbitraryAttributes": {
104
+ "type": "boolean",
105
+ "default": false,
106
+ "title": "TypeScript: Allow arbitrary attributes on HTML elements",
107
+ "description": "Enable the usage of non-standard HTML attributes, such as the ones added by AlpineJS or petite-vue"
108
+ },
103
109
  "astro.typescript.diagnostics.enabled": {
104
110
  "type": "boolean",
105
111
  "default": true,