marcoturi / ionic-boilerplate

✨ An Ionic Starter kit featuring Tests, E2E, Karma, Protractor, Jasmine, Istanbul, Gitlab CI, Automatic IPA and APK, TypeScript 2, TsLint, Codelyzer, Typedoc, Yarn, Rollup, and Webpack 2
MIT License
318 stars 107 forks source link

wildcard in declarations.d.ts breaks wallaby #9

Closed spicemix closed 8 years ago

spicemix commented 8 years ago

Just FYI, I was trying to integrate https://github.com/wallabyjs/ionic2-boilerplate with the new 0.9 release and it wouldn't work because of

// declarations.d.ts
declare module '*';

changing that to

// declarations.d.ts
declare module 'lodash-es/filter';

allowed it to still compile the example code and have wallaby work at the same time. I suggest making that change in master along with a note in the code suggesting the end-user update any extra declarations rather than shipping a wildcard by default.

Thanks for your amazing work on this!