thelounge/babel.config.cjs

11 lines
357 B
JavaScript
Raw Permalink Normal View History

module.exports = {
2022-05-03 10:53:01 +02:00
presets: [
["@babel/preset-env", {bugfixes: true}],
2022-05-23 09:44:01 +02:00
"babel-preset-typescript-vue3",
"@babel/preset-typescript", // ? babel-preset-typescript-vue should be a drop-in replacement for @babel/typescript with vue support
2022-05-04 06:09:46 +02:00
// "@vue/babel-preset-jsx",
2022-05-03 10:53:01 +02:00
],
plugins: ["@babel/plugin-transform-runtime"],
2022-05-03 08:16:34 +02:00
targets: "> 0.25%, not dead",
};