8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
babel loader 的 exclude 路径里,不能 exclude @ali 的路径
// tingle以外的modules都不需要经过babel解析 exclude: function (path) { var isNpmModule = !!path.match(/node_modules/); var isTingleModule = !!path.match(/node_modules[\/\\]tingle/); return isNpmModule && !isTingleModule; },
更改为
// tingle以外的modules都不需要经过babel解析 exclude: function (path) { var isNpmModule = !!path.match(/node_modules/); var isTingleModule = !!path.match(/node_modules[\/\\](@ali[\/\\])?tingle/); return isNpmModule && !isTingleModule; },
The text was updated successfully, but these errors were encountered:
你 PR 吧~
Sorry, something went wrong.
No branches or pull requests
babel loader 的 exclude 路径里,不能 exclude @ali 的路径
更改为
The text was updated successfully, but these errors were encountered: