2
我將使用browserfiy的現有項目移植到webpack。以前的進口陳述,如:ES6導入語句,假設.jsx以webpack結尾
import MyClass from './MyClass'
...會工作。現在我必須添加.jsx擴展
import MyClass from './MyClass.jsx'
這裏是我的裝載機定義:
var path = require("path");
module.exports = {
devServer: {
inline: true,
port: 10000 // Defaults to 8080
},
entry: {
app: ['./src/app.jsx']
},
output: {
path: path.resolve(__dirname, "public/scripts"),
publicPath: '/scripts',
filename: 'bundle.js'
},
module: {
loaders: [
{
test: /\.css$/,
loader: "style!css"
},
{
test: /\.sass$/,
loaders: ['style', 'css', 'sass']
},
{
test: /.jsx?$/,
loader: 'babel-loader',
exclude: /node_modules/,
query: {
presets: [
"es2015",
"stage-0",
"react"
],
plugins: [
"transform-flow-strip-types"
]
}
}
]
}
};
不知道如何說服的WebPack不帶擴展名來加載?
就我對webpack的理解而言,這不僅取決於babel加載器。你能包括整個webpack配置嗎? –
如果您希望擴展名不同,您可以將其更改爲'test:/ \。js $ /,'。 –
當然,更新@ E_net4 –