Skip to content

Commit 5b55f67

Browse files
author
Khoubza Younes
committed
fix: rollup and typescript deprecations
1 parent 9be34fa commit 5b55f67

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

rollup.config.js

-7
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,4 @@ export default {
8989
],
9090
},
9191
],
92-
onwarn(warning, warn) {
93-
const filename = warning.importer || warning.loc?.file;
94-
if (filename && /node_modules/.test(filename)) {
95-
return;
96-
}
97-
warn(warning);
98-
},
9992
};

tsconfig.build.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"skipLibCheck": true,
1919
"sourceMap": false,
2020
"strict": true,
21-
"target": "ES3",
21+
"target": "ES5",
2222
"typeRoots": [
2323
"node_modules/@types"
2424
],

0 commit comments

Comments
 (0)