Skip to content

Commit

Permalink
Update config
Browse files Browse the repository at this point in the history
  • Loading branch information
alesgenova committed Oct 15, 2018
1 parent 99e7849 commit 02d0583
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 18 deletions.
13 changes: 8 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "split-me",
"version": "1.1.0",
"version": "1.1.1",
"description": "Universal web component to create arbitrary split layouts ",
"module": "dist/esm/index.js",
"main": "dist/index.js",
Expand All @@ -12,8 +12,8 @@
"scripts": {
"build": "stencil build",
"start": "stencil build --dev --watch --serve",
"test": "jest",
"test.watch": "jest --watch",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"prepublishOnly": "rm -rf .stencil/ dist/ www/ && npm install && npm run build"
},
"dependencies": {
Expand All @@ -23,10 +23,13 @@
"@stencil/core": "^0.13.2",
"@types/jest": "^23.3.2",
"@types/lodash.throttle": "^4.1.4",
"@types/puppeteer": "1.9.0",
"husky": "^1.0.1",
"jest": "^23.6.0",
"jest": "23.5.0",
"pixelmatch": "4.0.2",
"prettier": "^1.14.3",
"pretty-quick": "^1.7.0"
"pretty-quick": "^1.7.0",
"puppeteer": "1.7.0"
},
"repository": {
"type": "git",
Expand Down
18 changes: 5 additions & 13 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,15 @@
"allowUnreachableCode": false,
"declaration": false,
"experimentalDecorators": true,
"lib": [
"dom",
"es2015"
],
"lib": ["dom", "es2017"],
"moduleResolution": "node",
"module": "es2015",
"target": "es2015",
"module": "esnext",
"target": "es2017",
"noUnusedLocals": true,
"noUnusedParameters": true,
"jsx": "react",
"jsxFactory": "h"
},
"include": [
"src",
"types/jsx.d.ts"
],
"exclude": [
"node_modules"
]
"include": ["src", "types/jsx.d.ts"],
"exclude": ["node_modules"]
}

0 comments on commit 02d0583

Please sign in to comment.