A plugin that makes it easier to automatically include namespace imports.
A namespace import is an import like:
import * as ModuleName from "path/to/module_name"
This plugin offers the capital-cased version of every typescript file in your workspace as a module inside of autocomplete.
For example if the file file_to_import exists in your workspace it will offer to import it as a module called FileToImport. Describe specific features of your extension including screenshots of your extension in action. Image paths are relative to this README file.
None yet.
Imports are currently imported using the workspace relative path.
This will need to be improved in the future to support imports
relative to the current file or to respect the value of compilerOptions.baseUrl
provided in tsconfig.
Initial release.