// We need this for the current way that Polaris spits out its // version/ name into the built script. declare module '*package.json' { export const name: string; export const version: string; } declare module '*.json' { const json: any; export = json; }