json-d-ts
v1.0.1
Published
JSON definition for Typescript that allows loading `.json` files using `import`.
Downloads
47
Maintainers
Readme
JSON d.ts
JSON definition for Typescript that allows loading .json
files using import
.
Usage
In order to load a .json
file using Typescript, do the following:
- Install this package
npm install --save-dev json-d-ts
- Add to your
tsconfig.json
the path to the installed module:
"typeRoots": [
"../node_modules/json-d-ts"
]
- Load your
.json
files easily usingimport
statements:
import * as data from './example.json';