mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-01-13 02:29:40 -06:00
The recast print utility prefers double quotes by default, this may fail many users' eslint check, so we have to implement a detection utility to tell if double quotes are actually needed. Template literals are also converted to string literals, to make things easier for future iterations.
10 lines
129 B
JavaScript
10 lines
129 B
JavaScript
const config = {
|
|
presets: [
|
|
[require('@vue/babel-preset-app'), {
|
|
polyfills: []
|
|
}]
|
|
]
|
|
}
|
|
|
|
module.exports = config
|