You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-12 12:41:46 +03:00
No need for .babelrc
This commit is contained in:
@ -5,6 +5,12 @@ var path = require('path');
|
|||||||
/*
|
/*
|
||||||
* It's a pain to have to wait for webpack to build everything; however it's
|
* It's a pain to have to wait for webpack to build everything; however it's
|
||||||
* the easiest way to load our dependencies from node_modules.
|
* the easiest way to load our dependencies from node_modules.
|
||||||
|
*
|
||||||
|
* TODO:
|
||||||
|
* - how do we stub out the js-sdk
|
||||||
|
* - can we run one test at a time
|
||||||
|
* - can we can we run under phantomjs/jsdom?
|
||||||
|
* - write junit out
|
||||||
*/
|
*/
|
||||||
module.exports = function (config) {
|
module.exports = function (config) {
|
||||||
config.set({
|
config.set({
|
||||||
@ -68,6 +74,9 @@ module.exports = function (config) {
|
|||||||
include: [path.resolve('./src'),
|
include: [path.resolve('./src'),
|
||||||
path.resolve('./test'),
|
path.resolve('./test'),
|
||||||
],
|
],
|
||||||
|
query: {
|
||||||
|
presets: ['react', 'es2015']
|
||||||
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
noParse: [
|
noParse: [
|
||||||
|
Reference in New Issue
Block a user