Skip to content

Commit 96976c4

Browse files
authored
browsers baseline (#289)
1 parent 0459b06 commit 96976c4

5 files changed

+9248
-5719
lines changed

karma.conf.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
var commonjs = require('@rollup/plugin-commonjs')
22
var nodeResolver = require('@rollup/plugin-node-resolve')
3+
var babel = require('@rollup/plugin-babel')
34

45
module.exports = function (config) {
56
config.set({
@@ -35,7 +36,11 @@ module.exports = function (config) {
3536
},
3637

3738
rollupPreprocessor: {
38-
plugins: [nodeResolver(), commonjs()],
39+
plugins: [
40+
nodeResolver(),
41+
commonjs(),
42+
babel({ babelHelpers: 'bundled' })
43+
],
3944
output: {
4045
format: 'iife',
4146
name: 'td_js_sdk_test',

0 commit comments

Comments
 (0)