Skip to content

Commit

Permalink
feat: Pluto typeorm migration. (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
igdev0 authored Mar 16, 2023
1 parent 13e2f29 commit 6107ef2
Show file tree
Hide file tree
Showing 27 changed files with 4,646 additions and 4,369 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*
build
*.db
30 changes: 16 additions & 14 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
module.exports = {
presets: [
"@babel/preset-typescript",
[
"@babel/preset-env",
{
useBuiltIns: "usage",
corejs: 3,
},
presets: [
"@babel/preset-typescript",
[
"@babel/preset-env",
{
useBuiltIns: "usage",
corejs: 3,
},
],
"@babel/preset-react",
],
plugins: [
["@babel/plugin-transform-typescript"],
"babel-plugin-transform-typescript-metadata",
["@babel/plugin-proposal-decorators", {"legacy": true}],
["@babel/plugin-proposal-class-properties", {"loose": false}],
],
"@babel/preset-react",
],
plugins: [
["@babel/plugin-proposal-class-properties"],
["@babel/plugin-transform-typescript"],
],
};
Loading

0 comments on commit 6107ef2

Please sign in to comment.