
* Upgrade devDependcies. Replace UglifyJS ⚰ with TerserJS 👶 Fix TypeScript compiler errors
* Remove babel and associated plugins
* Re-enable strictNullChecks and noImplicitAny
* Use surma's better ga type definition.
`ts-ignore` document.activeElement potential null warnings
* Avoiding ignores
24 lines
424 B
TypeScript
24 lines
424 B
TypeScript
declare const __webpack_public_path__: string;
|
|
declare const PRERENDER: boolean;
|
|
|
|
declare interface NodeModule {
|
|
hot: any;
|
|
}
|
|
|
|
declare interface Window {
|
|
STATE: any;
|
|
ga: typeof ga;
|
|
}
|
|
|
|
declare namespace JSX {
|
|
interface Element { }
|
|
interface IntrinsicElements { }
|
|
interface HTMLAttributes {
|
|
decoding?: string;
|
|
}
|
|
}
|
|
|
|
declare module 'classnames' {
|
|
export default function classnames(...args: any[]): string;
|
|
}
|