1.2.5 • Published 2 years ago
yml-register v1.2.5
yml-register
Hooks into Node's require function to load .yaml and .yml files.
Usage
From CLI
node -r yml-register path/to/index.jsManually import
require('yml-register')
require('/path/to/my-file.yaml') // now it works!TypeScript support
In order to fixing the error Cannot find module 'file.yaml' or its corresponding type declarations. when using import statement in TypeScript, we provides a type declaration bundled in this package.
What you need is to append compilerOptions.types by yml-register/types in tsconfig.json.
{
"compilerOptions": {
"types": [
"yml-register/types"
]
}
}