Support for TypeScript Modules

This commit is contained in:
Jarek Rozanski 2023-05-16 20:01:42 +00:00
parent 21bd300632
commit 6193324e89
5 changed files with 63 additions and 5 deletions

View file

@ -6,6 +6,10 @@
"repository": "github:inputobjects/wideangle-vuejs",
"main": "index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"clear": "rimraf dist",
"rebuild": "npm run clear && npm run build",
"prepublishOnly": "npm run rebuild"
},
"keywords": [
"wide angle analytics",
@ -16,5 +20,8 @@
"vuejs plugin"
],
"author": "Wide Angle Analytics <developers@wideangle.co>",
"license": "Apache-2.0"
"license": "Apache-2.0",
"devDependencies": {
"typescript": "^5.0.4"
}
}