We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fca6d3 commit 3fb42c0Copy full SHA for 3fb42c0
2 files changed
org.eclipse.wildwebdeveloper.tests/testProjects/vue-app/babel.config.js
@@ -1,5 +1,3 @@
1
-module.exports = {
2
- presets: [
+export const presets = [
3
'@vue/cli-plugin-babel/preset'
4
- ]
5
-}
+];
org.eclipse.wildwebdeveloper.tests/testProjects/vue-app/vue.config.js
@@ -1,4 +1,4 @@
-const { defineConfig } = require('@vue/cli-service')
-module.exports = defineConfig({
+import { defineConfig } from '@vue/cli-service'
+export default defineConfig({
transpileDependencies: true
})
0 commit comments