Skip to content

Commit d528d7f

Browse files
committed
fix: we dont need to emitDecoratorMetadata
1 parent 5571836 commit d528d7f

File tree

7 files changed

+6
-38
lines changed

7 files changed

+6
-38
lines changed

demo-ng/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"target": "es2017",
55
"moduleResolution": "node",
66
"experimentalDecorators": true,
7-
"emitDecoratorMetadata": true,
7+
"emitDecoratorMetadata": false,
88
"noEmitHelpers": true,
99
"noEmitOnError": true,
1010
"skipLibCheck": true,

demo-react/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"target": "es2017",
55
"moduleResolution": "node",
66
"experimentalDecorators": true,
7-
"emitDecoratorMetadata": true,
7+
"emitDecoratorMetadata": false,
88
"noEmitHelpers": true,
99
"noEmitOnError": true,
1010
"jsx": "react",

demo-svelte/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"allowSyntheticDefaultImports": true,
77
"esModuleInterop": false,
88
"experimentalDecorators": true,
9-
"emitDecoratorMetadata": true,
9+
"emitDecoratorMetadata": false,
1010
"noEmitHelpers": true,
1111
"noEmitOnError": true,
1212
"skipLibCheck": true,

demo-vue/app/examples/Tabs.vue

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -87,35 +87,3 @@ export default Vue.extend({
8787
});
8888
</script>
8989

90-
<style>
91-
92-
MDTabs {
93-
/* color: gold; */
94-
}
95-
96-
MDTabContentItem.special {
97-
color: green;
98-
}
99-
100-
MDTabStrip {
101-
color: skyblue;
102-
selected-item-color: white;
103-
un-selected-item-color: blue;
104-
highlight-color: yellow;
105-
background-color: green;
106-
}
107-
108-
MDTabStripItem.special {
109-
color: teal;
110-
}
111-
112-
MDTabStripItem.nested {
113-
color: teal;
114-
}
115-
116-
MDTabStripItem:highlighted {
117-
background-color: red;
118-
color: purple;
119-
}
120-
121-
</style>

demo-vue/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"module": "esnext",
55
"target": "es2017",
66
"experimentalDecorators": true,
7-
"emitDecoratorMetadata": true,
7+
"emitDecoratorMetadata": false,
88
"noEmitHelpers": true,
99
"noEmitOnError": true,
1010
"lib": [

demo/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"declaration": false,
77
"removeComments": false,
88
"noLib": false,
9-
"emitDecoratorMetadata": true,
9+
"emitDecoratorMetadata": false,
1010
"experimentalDecorators": true,
1111
"lib": [
1212
"es6",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"moduleResolution": "node",
66
"removeComments": true,
77
"noLib": false,
8-
"emitDecoratorMetadata": true,
8+
"emitDecoratorMetadata": false,
99
"experimentalDecorators": true,
1010
"lib": ["es6", "dom"],
1111
"sourceMap": true,

0 commit comments

Comments
 (0)