File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ const myCompiler: wallabyjs.IWallabyCompiler = (file: wallabyjs.IWallabyFile) =>
1313 } ;
1414} ;
1515
16+ declare const compilers : wallabyjs . IWallabyBuiltInCompilers ;
17+
1618export class WallabyConfig implements wallabyjs . IWallabyConfig {
1719 public files : Array < string | wallabyjs . IWallabyFilePattern > = [
1820 "src/**/*.ts" ,
@@ -26,9 +28,9 @@ export class WallabyConfig implements wallabyjs.IWallabyConfig {
2628 ] ;
2729
2830 public compilers : wallabyjs . IWallabyCompilers = {
29- "src/**/*.js" : this . wallaby . compilers . babel ( { babelrc : true } ) ,
30- "src/**/*.ts" : this . wallaby . compilers . typeScript ( { strict : true } ) ,
31- "src/**/*.coffee" : this . wallaby . compilers . coffeeScript ( { bare : true } ) ,
31+ "src/**/*.js" : compilers . babel ( { babelrc : true } ) ,
32+ "src/**/*.ts" : compilers . typeScript ( { strict : true } ) ,
33+ "src/**/*.coffee" : compilers . coffeeScript ( { bare : true } ) ,
3234 "src/**/*.my" : myCompiler ,
3335 } ;
3436
You can’t perform that action at this time.
0 commit comments