Skip to content
This repository has been archived by the owner on Oct 25, 2024. It is now read-only.

Commit

Permalink
chore: install: config: babel, transpile, export
Browse files Browse the repository at this point in the history
  • Loading branch information
nullfame committed Apr 15, 2024
1 parent 6726955 commit 6ed01f7
Show file tree
Hide file tree
Showing 5 changed files with 1,667 additions and 39 deletions.
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"certificatemanager",
"clonedeep",
"composables",
"esmodules",
"Finlayson",
"fontface",
"hygen",
Expand Down
13 changes: 13 additions & 0 deletions babel.cjs.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
},
"modules": "commonjs"
}
]
]
}
12 changes: 12 additions & 0 deletions babel.esm.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"presets": [
[
"@babel/preset-env",
{
"targets": {
"esmodules": true
}
}
]
]
}
Loading

0 comments on commit 6ed01f7

Please sign in to comment.