{
    "extends": "../.babelrc",
    "plugins": [
        [
            "babel-plugin-inline-import",
            {
                "extensions": [".html", ".mdx"] // Import .html snippets and mdx files into string variables
            }
        ],
        [
            "babel-plugin-transform-remove-imports",
            {
                "test": "(^.*global(.js)?)$|(.(scss|css))$" // Remove import for stories local global.js file, dont need it
            }
        ]
    ]
}
