Skip to content

Instantly share code, notes, and snippets.

@jagomf
Created August 21, 2018 09:52
Show Gist options
  • Save jagomf/e810941e5fdd47e743d1e2d5b8f73da6 to your computer and use it in GitHub Desktop.
Save jagomf/e810941e5fdd47e743d1e2d5b8f73da6 to your computer and use it in GitHub Desktop.
Import JSON to TypeScript
...
import * as data from './example.json';
...
const word = (<any>data).name;
console.log(word); // output 'testing'
...
declare module "*.json" {
const value: any;
export default value;
}
@jagomf
Copy link
Author

jagomf commented Aug 21, 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment