-
Notifications
You must be signed in to change notification settings - Fork 507
/
env.d.ts
21 lines (18 loc) · 854 Bytes
/
env.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
declare module 'asyncro'; // doesn't have types (unmerged 2+ year old PR: https://github.com/developit/asyncro/pull/10)
declare module 'enquirer'; // doesn't have types for Input or Select
declare module 'jpjs'; // doesn't ship types (written in TS though)
declare module 'tiny-glob/sync'; // /sync isn't typed (but maybe we can use async?)
// Patch Babel
// @see line 226 of https://unpkg.com/@babel/core@7.4.4/lib/index.js
declare module '@babel/core' {
export const DEFAULT_EXTENSIONS: string[];
export function createConfigItem(boop: any[], options: any): any[];
}
// Rollup plugins
declare module 'rollup-plugin-babel';
declare module 'rollup-plugin-size-snapshot';
declare module 'rollup-plugin-terser';
declare module 'babel-traverse';
declare module 'babylon';
declare module '@babel/helper-module-imports';
declare module 'lodash.merge';