├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── ast-viewer.jpg ├── examples ├── fileA.ts ├── fileB.ts └── var_to_const_tramsform.ts ├── package.json ├── src ├── cli.ts ├── codemod.ts └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolkSoftware/tsmod/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolkSoftware/tsmod/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolkSoftware/tsmod/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolkSoftware/tsmod/HEAD/_config.yml -------------------------------------------------------------------------------- /ast-viewer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolkSoftware/tsmod/HEAD/ast-viewer.jpg -------------------------------------------------------------------------------- /examples/fileA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolkSoftware/tsmod/HEAD/examples/fileA.ts -------------------------------------------------------------------------------- /examples/fileB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolkSoftware/tsmod/HEAD/examples/fileB.ts -------------------------------------------------------------------------------- /examples/var_to_const_tramsform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolkSoftware/tsmod/HEAD/examples/var_to_const_tramsform.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolkSoftware/tsmod/HEAD/package.json -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolkSoftware/tsmod/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/codemod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolkSoftware/tsmod/HEAD/src/codemod.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolkSoftware/tsmod/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolkSoftware/tsmod/HEAD/tsconfig.json --------------------------------------------------------------------------------