First revision

This commit is contained in:
2026-04-10 00:36:38 -04:00
parent ce515e4176
commit 807c535ef8
204 changed files with 15370 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
module.exports = function(api) {
api.cache(true);
const presets = [
[
"@babel/preset-env",
{
targets: "last 2 versions, >1%, not dead",
},
],
];
const plugins = [];
return {
presets,
plugins,
};
};