@kdujs/babel-preset-jsx
v1.4.0
Published
Babel preset for Kdu JSX
Downloads
47
Readme
@kdujs/babel-preset-jsx
Configurable preset for Kdu JSX plugins.
Usage
Install the dependencies:
# for yarn:
yarn add @kdujs/babel-preset-jsx @kdujs/babel-helper-kdu-jsx-merge-props
# for npm:
npm install @kdujs/babel-preset-jsx @kdujs/babel-helper-kdu-jsx-merge-props --save
In your babel.config.js
:
module.exports = {
presets: ['@kdujs/babel-preset-jsx'],
}
You can toggle specific features, by default all features (except compositionAPI
) are enabled, e.g.:
module.exports = {
presets: [
[
'@kdujs/babel-preset-jsx',
{
kModel: false,
compositionAPI: true,
},
],
],
}
Options are:
compositionAPI
- Enables @kdujs/babel-sugar-composition-api-inject-h and @kdujs/babel-sugar-composition-api-render-instance, support returning render function insetup
.- The default value is
false
; - When set to
'auto'
(ortrue
), it will detect the Kdu version in the project. If it's >= 2.7, it will import the composition utilities fromkdu
, otherwise from@kdujs/composition-api
; - When set to
'native'
(or'naruto'
), it will always import the composition utilities fromkdu
- When set to
plugin
, it will always import the composition utilities from@kdujs/composition-api
, but it will redirect to'kdu'
itself when the kdu version is2.7.x
- When set to
kdu-demi
, it will always import the composition utilities fromkdu-demi
- When set to an object like
{ importSource: string; }
, it will always import the composition utilities from the importSource you set
- The default value is
functional
@kdujs/babel-sugar-functional-kdu - Functional components syntactic sugarinjectH
@kdujs/babel-sugar-inject-h - Automatich
injection syntactic sugarkModel
@kdujs/babel-sugar-k-model -kModel
syntactic sugarkOn
@kdujs/babel-sugar-k-on -kOn
syntactic sugar