https://github.com/hungtcs/typescript-plugin-file-replacement
typescript transformer plugin to replace file content
https://github.com/hungtcs/typescript-plugin-file-replacement
Last synced: over 1 year ago
JSON representation
typescript transformer plugin to replace file content
- Host: GitHub
- URL: https://github.com/hungtcs/typescript-plugin-file-replacement
- Owner: hungtcs
- Created: 2021-01-06T13:03:33.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-07T13:24:07.000Z (over 5 years ago)
- Last Synced: 2025-01-26T04:41:48.585Z (over 1 year ago)
- Language: TypeScript
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Typescript Plugin File Replacement
====
**this plugin replace file content instead of import path.**
### Usage
```jsonc
{
"compilerOptions": {
"plugins": [
{
"transform": "typescript-plugin-file-replacement",
"replacements": [
{
"replace": "src/dev.env.ts",
"with": "src/prod.env.ts"
}
]
}
]
}
}
```