DefinitelyTyped/types/case-sensitive-paths-webpack-plugin/case-sensitive-paths-webpack-plugin-tests.ts
2017-11-16 22:59:52 +03:00

16 lines
392 B
TypeScript

import { Configuration } from 'webpack';
import CaseSensitivePathsWebpackPlugin = require('case-sensitive-paths-webpack-plugin');
const options: CaseSensitivePathsWebpackPlugin.Options = {
debug: true,
};
const c: Configuration = {
plugins: [
new CaseSensitivePathsWebpackPlugin(),
new CaseSensitivePathsWebpackPlugin({
debug: true
}),
],
};