这是什么原因呀
依赖包版本:
更新说明
webpack的配置如下:
{
test:/\.(ts|js)$/,
exclude:/node_module/,
use:[
{
loader:'babel-loader'
}
]
}
.babelrc
{
"presets":["@babel/preset-typescript"]
}
解决方案
.babelrc
{
"presets": [
[
"@babel/typescript",
{
"allExtensions":true
}
]
]
}
附"@babel/typescript"选项说明:https://babeljs.io/docs/en/ba...
看着像不支持ts,看一下script标签有没有加lang="ts"