We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5509b6 commit 67ceea5Copy full SHA for 67ceea5
package.json
@@ -3,6 +3,7 @@
3
"version": "1.1.0",
4
"description": "SimpleMDE - Markdown Editor component for Vue.js",
5
"main": "src/index.vue",
6
+ "typings": "types/index.d.ts",
7
"scripts": {
8
"build": "vue-cli-service build --target lib --name VueSimpleMDE src/index.vue",
9
"postbuild": "node hack.js",
@@ -19,7 +20,8 @@
19
20
},
21
"files": [
22
"dist",
- "src"
23
+ "src",
24
+ "types"
25
],
26
"repository": {
27
"type": "git",
types/index.d.ts
@@ -0,0 +1,3 @@
1
+import Vue from 'vue';
2
+
+export default class VueSimplemde extends Vue { }
0 commit comments