v1.0.6
This tool transforms your local TypeScript code that gives you to rewrite file extension of module specifier automatically.
Attributes
Includes Deno configuration
Repository
Current version released
3 years ago
Dependencies
std
module-specifier-resolver
This tool transforms your local TypeScript code that gives you to rewrite file extension of module specifier automatically.
transform examples
export { foo } from "./foo"
// transform to
export { foo } from "./foo.(ts|tsx|d.ts)"import { bar } from "./bar"
// transform to
import { bar } from "./bar.(ts|tsx|d.ts)"limitation
- Canāt resolve
pathsalias of TypeScript compiler options. - Canāt resolve
import()syntax, commonly calleddynamic import. - Canāt keep
newlineof original source code. - Canāt keep
single quatationorduble quatationandsemicolonof original source code.
command
remote
- dry run
deno run --unstable --allow-env --allow-read https://deno.land/x/module_specifier_resolver@v1.0.6/bin.ts -b=./src -c=./tsconfig.json -d
- transform
deno run --unstable --allow-env --allow-read --allow-write https://deno.land/x/module_specifier_resolver@v1.0.6/bin.ts -b=./src -c=./tsconfig.json -r
local
deno task run-drydeno task run
arguments
| key | description | type | default |
|---|---|---|---|
| -b | local of base directory | string |
. |
| -c | local of base tsconfig.json |
string |
./tsconfig.json |
| -d | dry run | boolean |
false |
| -r | enable repl interface | boolean |
false |
tips
After you ran bin.ts, you should run npx tsc --noEmit due to check correctness of transformation by this tool.
tsconfig.jsonexample{ "compilerOptions": { "moduleResolution": "bundler", "allowImportingTsExtensions": true, "noEmit": true } }
License
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)