setup(prototype): init project

just initiated the project and added a few possible dependencies i'd have to clean up in a next step
This commit is contained in:
Benjamin Wegener
2021-10-09 12:47:38 +02:00
commit 4bbc5cc832
8 changed files with 3335 additions and 0 deletions

23
babel.config.js Normal file
View File

@@ -0,0 +1,23 @@
module.exports = function (api) {
api.cache(true)
return {
presets: [
[
"@babel/preset-env",
{
corejs: {
version: "3.8",
proposals: false
},
useBuiltIns: "usage" // browserslist in package.json
}
],
],
plugins: [
[
"@babel/plugin-transform-for-of",
{ allowArrayLike: true }
],
]
}
}