mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
16 lines
392 B
TypeScript
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
|
|
}),
|
|
],
|
|
};
|