fix(cli): failed to compile ts sfc

This commit is contained in:
chenjiahan 2020-11-27 15:49:14 +08:00
parent 7304c98ed0
commit c13b734c90
3 changed files with 28 additions and 0 deletions

View 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')],
},
],
}));

View File

@ -18,6 +18,7 @@ module.exports = function (api?: ConfigAPI) {
},
],
'@babel/preset-typescript',
require('../compiler/babel-preset-vue-ts'),
],
plugins: [
[

View File

@ -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';