UNPKG

264 BTypeScriptView Raw
1// We need this for the current way that Polaris spits out its
2// version/ name into the built script.
3declare module '*package.json' {
4 export const name: string;
5 export const version: string;
6}
7
8declare module '*.json' {
9 const json: any;
10 export = json;
11}