Skip to content

Commit c9fd234

Browse files
author
Adrian Florescu
committed
fix(build): fix build directory
1 parent d03437e commit c9fd234

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tsconfig.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"compilerOptions": {
3-
"outDir": "build/lib",
3+
"outDir": "./dist",
44
"module": "commonjs",
55
"target": "es5",
66
"lib": ["es5", "es6", "es7", "es2017", "dom"],
@@ -22,6 +22,5 @@
2222
"experimentalDecorators": true,
2323
"emitDecoratorMetadata": true
2424
},
25-
"include": ["src/**/*"],
26-
"exclude": ["node_modules", "dist", "scripts"]
25+
"exclude": ["node_modules", "dist"]
2726
}

webpack.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ module.exports = {
3232
},
3333
externals: {
3434
"react": "react",
35-
"react-dom": "react-dom"
35+
"react-dom": "react-dom",
36+
"react-virtualized": "react-virtualized"
3637
},
3738
resolve: {
3839
extensions: [ '.tsx', '.ts', '.js' ]

0 commit comments

Comments
 (0)