Skip to content

Commit

Permalink
fix(ignore): Update tsconfig and fix 599b3e9
Browse files Browse the repository at this point in the history
  • Loading branch information
Koenkk committed Dec 27, 2023
1 parent 599b3e9 commit c4f9bf4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
4 changes: 0 additions & 4 deletions .babelrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,4 @@ module.exports = {
'@babel/env',
'@babel/typescript',
],
plugins: [
"@babel/proposal-object-rest-spread",
"@babel/proposal-class-properties"
]
};
7 changes: 4 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"compilerOptions": {
"module": "commonjs",
"allowSyntheticDefaultImports": true,
"module": "ES2022",
"esModuleInterop": true,
"target": "es2018",
"lib": ["es2018"],
"target": "ES2022",
"lib": ["ES2022"],
"noImplicitAny": true,
"noImplicitThis": true,
"moduleResolution": "node",
Expand Down

0 comments on commit c4f9bf4

Please sign in to comment.