diff --git a/package.json b/package.json index 3c97ef1..6acefb7 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { - "name": "typescript-datastructures", + "name": "typescript-generic-datastructures", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { - "start": "tsnd --respawn --transpileOnly ./src/examples/index.ts", + "start": "tsnd --respawn ./src/examples/index.ts", "build": "TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack --mode=production", "semantic-release": "semantic-release", "test": "echo \"Error: no test specified\" && exit 1" diff --git a/webpack.config.ts b/webpack.config.ts index 8253d20..98c8061 100644 --- a/webpack.config.ts +++ b/webpack.config.ts @@ -8,12 +8,12 @@ const webpackconfiguration: webpack.Configuration = { entry: path.resolve(__dirname, 'src', 'index.ts'), devtool: isProd ? 'hidden-source-map' : 'source-map', output: { - filename: 'typescript-datastructures.js', + filename: 'typescript-generic-datastructures.js', path: path.resolve(__dirname, 'dist'), libraryTarget: 'umd', globalObject: 'this', - sourceMapFilename: 'typescript-datastructures.map', - library: 'typescript-datastructures' + sourceMapFilename: 'typescript-generic-datastructures.map', + library: 'typescript-generic-datastructures' }, resolve: { extensions: ['.ts', '.js', '.json']