Skip to content

Commit

Permalink
fix: rollup and typescript deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
Khoubza Younes committed Jun 5, 2023
1 parent 9be34fa commit 5b55f67
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
7 changes: 0 additions & 7 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,4 @@ export default {
],
},
],
onwarn(warning, warn) {
const filename = warning.importer || warning.loc?.file;
if (filename && /node_modules/.test(filename)) {
return;
}
warn(warning);
},
};
2 changes: 1 addition & 1 deletion tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"skipLibCheck": true,
"sourceMap": false,
"strict": true,
"target": "ES3",
"target": "ES5",
"typeRoots": [
"node_modules/@types"
],
Expand Down

0 comments on commit 5b55f67

Please sign in to comment.