Transform import and export paths to work on client and server environments.
- User-configured path replacements
- Fix
baseUrlrelative paths - Add
.jsextension
npm install --save-dev typescript ttypescript ts-import-transformerIn this example, we enable the plugin and configure a path replacement for the superstruct library within our tsconfig.json:
{
"compilerOptions": {
"plugins": [
{
"transform": "ts-import-transformer",
"superstruct": "./assets/superstruct/index"
}
]
}
}npx ttsc -p tsconfig.json