Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dropbox/ts-transform-react-jsx-source
TypeScript AST Transformer that adds source file and line number to JSX elements
https://github.com/dropbox/ts-transform-react-jsx-source
ast compiler debug jsx react transform typescript
Last synced: 3 days ago
JSON representation
TypeScript AST Transformer that adds source file and line number to JSX elements
- Host: GitHub
- URL: https://github.com/dropbox/ts-transform-react-jsx-source
- Owner: dropbox
- License: apache-2.0
- Created: 2019-01-09T23:12:49.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2023-07-25T22:50:21.000Z (over 1 year ago)
- Last Synced: 2024-04-25T16:44:41.262Z (6 months ago)
- Topics: ast, compiler, debug, jsx, react, transform, typescript
- Language: TypeScript
- Homepage:
- Size: 858 KB
- Stars: 12
- Watchers: 10
- Forks: 10
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-typescript-ecosystem - ts-transform-react-jsx-source - TypeScript AST Transformer that adds source file and line number to JSX elements (Transformers / React)
README
# ts-transform-react-jsx-source
![build status](https://travis-ci.org/dropbox/ts-transform-react-jsx-source.svg?branch=master)
This is a TypeScript AST Transformer that adds source file and line number to JSX elements, similar to [babel-plugin-transform-react-jsx-source](https://babeljs.io/docs/en/babel-plugin-transform-react-jsx-source).
## Usage
### Custom compiler
First of all, you need some level of familiarity with the [TypeScript Compiler API](https://github.com/Microsoft/TypeScript/wiki/Using-the-Compiler-API).`compile.ts` & tests should have examples of how this works.
### ts-loader
You can add this in your webpack config `ts-loader`.
```
import {transform} from 'ts-transform-react-jsx-source';
// webpack config
...
rules: [
{
test: /\.tsx?$/,
use: [
{
loader: 'ts-loader',
options: {
getCustomTransformers() {
return {
before: [transform()],
};
},
},
},
],
exclude: /node_modules/,
},
```## License
Copyright (c) 2018 Dropbox, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.