diff --git a/tsconfig.json b/tsconfig.json index c9112f7..0140b7b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "outDir": "build/lib", + "outDir": "./dist", "module": "commonjs", "target": "es5", "lib": ["es5", "es6", "es7", "es2017", "dom"], @@ -22,6 +22,5 @@ "experimentalDecorators": true, "emitDecoratorMetadata": true }, - "include": ["src/**/*"], - "exclude": ["node_modules", "dist", "scripts"] + "exclude": ["node_modules", "dist"] } \ No newline at end of file diff --git a/webpack.config.js b/webpack.config.js index 779777a..1ce3961 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -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' ]