tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

rollup.config.js (253B)


      1 import babel from 'rollup-plugin-babel';
      2 
      3 export default {
      4  input: './src/index.js',
      5  output: {
      6    format: 'cjs',
      7    file: 'dist/index.js'
      8  },
      9  sourcemap: true,
     10  plugins: [
     11    babel()
     12  ],
     13  external(id) {
     14    return !/^[\.\/]/.test(id)
     15  },
     16 };