neutrino-middleware-ts-loader
is Neutrino middleware for loading and importing typescript modules.
- Node.js v6.9+
- Yarn or npm client
- Neutrino v5
neutrino-middleware-ts-loader
can be installed via the Yarn or npm clients.
❯ yarn add neutrino-middleware-ts-loader
❯ npm install --save neutrino-middleware-ts-loader
neutrino-middleware-ts-loader
can be consumed from the Neutrino API, middleware, or presets. Require this package
and plug it into Neutrino:
const typescript = require('neutrino-middleware-ts-loader');
neutrino.use(typescript);
neutrino-middleware-ts-loader
creates some conventions to make overriding the configuration easier once you are
ready to make changes.
The following is a list of rules and their identifiers which can be overridden:
sourcemap
: Allows using source maps for modules. Contains a loader namedsourcemap
which usessource-map-loader
.typescript
: Allows importing and writing typescript modules. Contains a loader namedts
which usests-loader
.