Skip to content

Commit

Permalink
packaging stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
esamattis committed Jun 12, 2018
1 parent aa2105e commit b9a5cff
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
node_modules
node_modules
build
typings
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,17 @@
"name": "@epeli/redux-stack",
"version": "0.1.0",
"description": "",
"main": "lib/index.js",
"main": "build/index.js",
"scripts": {
"test": "tsc --noEmit && jest"
},
"author": "",
"license": "ISC",
"types": "./typings/src/index.d.ts",
"files": [
"build/src",
"typings/src"
],
"devDependencies": {
"@types/jest": "^23.0.2",
"@types/react": "^16.3.17",
Expand Down
3 changes: 3 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"target": "es5",
"lib": ["es6", "dom"],
"sourceMap": true,
"outDir": "./build",
"declaration": true,
"declarationDir": "./typings",
"jsx": "react",
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
Expand Down

0 comments on commit b9a5cff

Please sign in to comment.