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 a9e6542 commit 020ddc3Copy full SHA for 020ddc3
package.json
@@ -5,8 +5,8 @@
5
"typings": "dist/index.d.ts",
6
"scripts": {
7
"test": "TS_NODE_FAST=true TS_NODE_NO_PROJECT=true ava",
8
- "prepublish": "rimraf dist && tsc -p .",
9
- "semantic-release": "semantic-release pre && npm publish --access=public && semantic-release post"
+ "build": "rimraf dist && tsc -p .",
+ "semantic-release": "npm run build && semantic-release pre && npm publish --access=public && semantic-release post"
10
},
11
"repository": {
12
"type": "git",
tsconfig.json
@@ -8,7 +8,8 @@
"declaration": true,
"outDir": "dist",
"rootDir": "src",
- "sourceMap": true
+ "sourceMap": true,
+ "lib": ["es6"]
13
14
"exclude": [
15
"node_modules",
0 commit comments