Files
github-readme-stats/babel.config.js
T
rickstaa 1617c3fb22 feat: add initial typescript migration
This commit performs the base changes that are needed to migrate the
codebase to typescript.
2022-10-04 11:43:31 +02:00

7 lines
133 B
JavaScript

module.exports = {
presets: [
["@babel/preset-env", { targets: { node: "current" } }],
"@babel/preset-typescript",
],
};