fix: 编译所有 .vue | .jsx 文件,不管是否在node_modules (#101)

This commit is contained in:
qlin 2022-02-22 19:01:42 +08:00 committed by GitHub
parent 9aca54ce60
commit 1e033d488f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -177,7 +177,7 @@ export default async function getConfig({
.test(/\.(js|mjs|jsx|ts|tsx)$/)
.exclude.add((filepath) => {
// always transpile js in vue files
if (/\.vue\.jsx?$/.test(filepath)) {
if (/(\.vue|\.jsx)$/.test(filepath)) {
return false;
}
// Don't transpile node_modules