我想为此编写一个库并配置Webpack。 这是一个React + Typescript项目。 如果我不引用任何其他库,那似乎很完美。在开发环境中,webpack只是生成器10 + k js文件包括inline-source-map。 但是,当我使用antd之类的其他库时,它将生成一个15M +的js文件。
很明显,webpack为node_modules目录中的模块制作了源映射。即使源映射将被排除在生产中,这也让我感到不舒服。 如何将webpack配置为在生成器源映射时忽略node_modules目录? 我尝试使用SourceMapDevToolPlugin或source-map-loader并设置排除或包含选项。它不起作用。 我认为它受到awesome-typescript-loader的影响。
所有数据包都是Newest.webpack:“ 4.30.0” 有一个失败的版本。
position(int array[],int size){
int counter = 0;
printf("write the number you want to look for");
int number;
scanf("%d",number);
while(counter<size){
if(number==array[counter++])
printf("position of the element: %d", counter-1);
}
}
谢谢您的阅读。对不起,我的英语狗屎。