Skip to content

Commit

Permalink
Merge pull request #19 from pollen8/master
Browse files Browse the repository at this point in the history
emit ts files as NPM package does not contain /dist files
  • Loading branch information
echoulen committed Apr 11, 2019
2 parents cf8d0fa + 6ad1046 commit ee8f02a
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,20 @@
"experimentalDecorators": true,
"skipLibCheck": true,
"declaration": true,
"lib": ["es5", "es6", "dom"],
"lib": [
"es5",
"es6",
"dom"
],
"jsx": "react",
"types": ["node"],
"types": [
"node"
],
"sourceRoot": "src",
"declarationDir": "dist",
"noEmit": true,
"outDir": "dist"
},
"exclude": [
"node_modules"
]
}
}

0 comments on commit ee8f02a

Please sign in to comment.