chore(vue, vue-router): update dev dependencies (#25465)

This commit is contained in:
Liam DeBeasi
2022-06-14 11:40:22 -04:00
committed by GitHub
parent 35c1adf10c
commit 198f41803b
5 changed files with 3874 additions and 4127 deletions

View File

@ -7,8 +7,8 @@ tsConfig.compilerOptions.module = 'commonjs';
module.exports = {
process(src, path) {
if (path.endsWith('.ts') || path.endsWith('.tsx')) {
return tsc.transpile(src, tsConfig.compilerOptions, path, []);
return { code: tsc.transpile(src, tsConfig.compilerOptions, path, []) };
}
return src;
return { code: src };
},
};