diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index b30ca6d0..2798cdda 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -677,6 +677,16 @@ "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==", "dev": true }, + "@types/copy-webpack-plugin": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@types/copy-webpack-plugin/-/copy-webpack-plugin-6.0.0.tgz", + "integrity": "sha512-Ousy+sNap1j44eG+C9FZvTUybpp9lFmKjBRF7L0NDs/+SDA9OXKo2OpsHJfD/LMWflz+uvfTCBXH1CgdL6AW/g==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/webpack": "*" + } + }, "@types/debug": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.5.tgz", diff --git a/package.json b/package.json index 973e53cf..9e2407ef 100644 --- a/package.json +++ b/package.json @@ -51,6 +51,7 @@ "@fortawesome/react-fontawesome": "^0.1.7", "@types/bluebird": "^3.5.30", "@types/chai": "^4.2.7", + "@types/copy-webpack-plugin": "^6.0.0", "@types/mime-types": "^2.1.0", "@types/mini-css-extract-plugin": "^0.9.1", "@types/mocha": "^7.0.2", diff --git a/webpack.config.ts b/webpack.config.ts index 14a51c98..0badecc7 100644 --- a/webpack.config.ts +++ b/webpack.config.ts @@ -14,7 +14,6 @@ * limitations under the License. */ -// @ts-ignore @types for copy-webpack-plugin@6.0.1 not released yet import * as CopyPlugin from 'copy-webpack-plugin'; import { readdirSync } from 'fs'; import * as _ from 'lodash';