Skip to content

Commit 25b9f18

Browse files
committed
Remove duplicated default configuration options
1 parent 23619b2 commit 25b9f18

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

lib/loaders/typescript.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,6 @@ module.exports = {
2222

2323
// some defaults
2424
let config = {
25-
transpileOnly: false,
26-
happyPackMode: false,
27-
logInfoToStdOut: false,
28-
logLevel: 'info',
2925
silent: true,
3026
};
3127

test/loaders/typescript.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@ describe('loaders/typescript', () => {
4646
expect(actualLoaders[1].options.foo).to.equal('bar');
4747
// defaults
4848
expect(actualLoaders[1].options.silent).to.be.true;
49-
expect(actualLoaders[1].options.transpileOnly).to.be.false;
50-
expect(actualLoaders[1].options.logLevel).to.equal('info');
5149
});
5250

5351
});

0 commit comments

Comments
 (0)