How typescript declares the type of export default

when writing webpack configuration. Usually

const config: WebpackConfig = { ... };

export default config;
Jun.20,2021

export default <WebpackConfig> {
    entry: '',
    ...
}

you may need this webpack declaration file

.
Menu