patternplate-transform-typescript
v0.7.4
Published
TypeScript transform for patternplate
Downloads
4
Readme
TypeScript transform for patternplate patterns
patternplate-transform-typescript
Installation
npm install --save-dev typescript patternplate-transform-typescript
Usage
// configuration/patternplate-server/transforms.js
module.exports = {
'typescript': {
inFormat: 'tsx',
outFormat: 'js',
opts: {
target: 'es5',
module: 'commonjs',
jsx: 'react'
}
},
'react-to-markup': {
inFormat: 'js',
outFormat: 'html',
opts: {
automount: true
}
}
};
// configuration/patternplate-server/pattern.js
module.exports = {
formats: {
js: {
transforms: ['typescript', 'react-to-markup']
}
}
};
Note: Currently there are a few transpiler/compiler defaults which are not overridable
Built by (c) Markus Wolf. Released under the MIT license.