babel/lib/package-json.d.ts
Nicolò Ribaudo e735266dee
Avoid importing .json files (#12759)
* Avoid importing `.json` files

* Use ESold in babel.config.json

* Use `import/extensions` eslint plugin
2021-02-05 23:34:36 +01:00

9 lines
230 B
TypeScript

// NOTE: This global .d.ts file can be included with
// /// <reference path="../../../lib/package-json.d.ts" />
// in .ts files using the PACKAGE_JSON macro.
declare const PACKAGE_JSON: {
name: string;
version: string;
};