mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
fix(cli): failed to compile ts sfc
This commit is contained in:
parent
7304c98ed0
commit
c13b734c90
26
packages/vant-cli/src/compiler/babel-preset-vue-ts.ts
Normal file
26
packages/vant-cli/src/compiler/babel-preset-vue-ts.ts
Normal file
@ -0,0 +1,26 @@
|
||||
/**
|
||||
* @babel/preset-typescript 不支持编译 Vue 文件中的 ts 代码
|
||||
* 通过手动添加 @babel/plugin-transform-typescript 的方式来解决这个问题
|
||||
* see: https://github.com/babel/babel-loader/pull/738
|
||||
*/
|
||||
|
||||
import { readFileSync } from 'fs';
|
||||
import { declare } from '@babel/helper-plugin-utils';
|
||||
|
||||
module.exports = declare(() => ({
|
||||
overrides: [
|
||||
{
|
||||
test: (filePath: string) => {
|
||||
if (/\.vue$/.test(filePath)) {
|
||||
const template = readFileSync(filePath, { encoding: 'utf8' });
|
||||
return (
|
||||
template.includes('lang="ts"') || template.includes("lang='ts'")
|
||||
);
|
||||
}
|
||||
|
||||
return false;
|
||||
},
|
||||
plugins: [require('@babel/plugin-transform-typescript')],
|
||||
},
|
||||
],
|
||||
}));
|
@ -18,6 +18,7 @@ module.exports = function (api?: ConfigAPI) {
|
||||
},
|
||||
],
|
||||
'@babel/preset-typescript',
|
||||
require('../compiler/babel-preset-vue-ts'),
|
||||
],
|
||||
plugins: [
|
||||
[
|
||||
|
1
packages/vant-cli/src/module.d.ts
vendored
1
packages/vant-cli/src/module.d.ts
vendored
@ -9,4 +9,5 @@ declare module 'release-it';
|
||||
declare module 'html-webpack-plugin';
|
||||
declare module 'conventional-changelog';
|
||||
declare module '@vant/markdown-vetur';
|
||||
declare module '@babel/helper-plugin-utils';
|
||||
declare module '@nuxt/friendly-errors-webpack-plugin';
|
||||
|
Loading…
x
Reference in New Issue
Block a user