Skip to content

Commit

Permalink
browsers baseline (#289)
Browse files Browse the repository at this point in the history
  • Loading branch information
imnutz authored Oct 15, 2024
1 parent 0459b06 commit 96976c4
Show file tree
Hide file tree
Showing 5 changed files with 9,248 additions and 5,719 deletions.
7 changes: 6 additions & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
var commonjs = require('@rollup/plugin-commonjs')
var nodeResolver = require('@rollup/plugin-node-resolve')
var babel = require('@rollup/plugin-babel')

module.exports = function (config) {
config.set({
Expand Down Expand Up @@ -35,7 +36,11 @@ module.exports = function (config) {
},

rollupPreprocessor: {
plugins: [nodeResolver(), commonjs()],
plugins: [
nodeResolver(),
commonjs(),
babel({ babelHelpers: 'bundled' })
],
output: {
format: 'iife',
name: 'td_js_sdk_test',
Expand Down
Loading

0 comments on commit 96976c4

Please sign in to comment.