Skip to content

Commit

Permalink
feature: fix bundle support es5
Browse files Browse the repository at this point in the history
  • Loading branch information
nbutmickey committed Jan 20, 2024
1 parent 6f4467c commit fb6cba8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export default defineConfig([
banner
}],
plugins: [
typescript()
typescript({tsconfig: 'tsconfig.build.json'}),

Check failure on line 62 in rollup.config.js

View workflow job for this annotation

GitHub Actions / OtherTests

A space is required after '{'

Check failure on line 62 in rollup.config.js

View workflow job for this annotation

GitHub Actions / OtherTests

A space is required before '}'

Check failure on line 62 in rollup.config.js

View workflow job for this annotation

GitHub Actions / OtherTests

Unexpected trailing comma
]
}
]);
7 changes: 7 additions & 0 deletions tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"target": "es5",
},
}

0 comments on commit fb6cba8

Please sign in to comment.