We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e1da88 commit 72cdd43Copy full SHA for 72cdd43
index.ts
@@ -61,8 +61,7 @@ export class VElement implements IElementBase
61
{
62
if (value[nsAttr] != null)
63
64
- this.attrs[ns] = this.attrs[ns] || {};
65
- this.attrs[ns][nsAttr] = '' + value[nsAttr];
+ (this.attrs[ns] = this.attrs[ns] || {})[nsAttr] = '' + value[nsAttr];
66
}
67
68
package.json
@@ -20,6 +20,7 @@
20
"jsx",
21
"react",
22
"node",
23
+ "ssr",
24
"vnode",
25
"dom",
26
"vdom"
tsconfig.json
@@ -4,8 +4,6 @@
4
"moduleResolution": "node",
5
"module": "commonjs",
6
"removeComments": true,
7
- "experimentalDecorators" : true,
8
- "emitDecoratorMetadata": true,
9
"allowSyntheticDefaultImports" : true,
10
"sourceMap": true,
11
"declaration": true
0 commit comments