Skip to content

Commit

Permalink
fix(build): fix build directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Florescu committed Aug 16, 2019
1 parent d03437e commit c9fd234
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 2 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"outDir": "build/lib",
"outDir": "./dist",
"module": "commonjs",
"target": "es5",
"lib": ["es5", "es6", "es7", "es2017", "dom"],
Expand All @@ -22,6 +22,5 @@
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "scripts"]
"exclude": ["node_modules", "dist"]
}
3 changes: 2 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ module.exports = {
},
externals: {
"react": "react",
"react-dom": "react-dom"
"react-dom": "react-dom",
"react-virtualized": "react-virtualized"
},
resolve: {
extensions: [ '.tsx', '.ts', '.js' ]
Expand Down

0 comments on commit c9fd234

Please sign in to comment.