react-native-msal-client
Version:
React Native Bindings for the Microsoft MSAL library
21 lines (19 loc) • 384 B
JavaScript
// flow
import resolve from 'rollup-plugin-node-resolve';
import babel from 'rollup-plugin-babel';
import commonjs from 'rollup-plugin-commonjs';
export default {
input: 'index.js',
output: {
file: 'dist/index.js',
format: 'cjs',
},
plugins: [
resolve(),
babel({
exclude: 'node_modules/**',
}),
commonjs(),
],
external: ['react-native'],
};