Automatically finds, parses and provides code actions for all available imports. Only currently works with files in your folder and TypeScript.
filesToScan - Glob for which files in your workspace to scan, defaults to '**/*.{ts, tsx}'
showNotifications - Controls if the annoying notifications should be shown, defaults to false
doubleQuotes - Use double quotes rather than single
spaceBetweenBraces - Difference between import {test} and import { test }
- Fixed breaking bug with vs 1.5.* and < TypeScript 2.0.0
- Few small tweaks and fixed error with vscode 1.5.*
- Added Import status bar, currently show you how many importable objects you have.
- Correctly uses configured file paths for fileWatcher.
- Fixed new exports not being immediately discovered.
- CodeAction import paths are relative to the current file.
- Typings are now excluded by default (along with node_modules and jspm_packages)
- Fixed Windows paths issue
- Nicer import paths.
- Imports are now merged if they are from the same location.
- Configuration for ' or ".
- Works on Windows.
- Now on Github.
- Add configuration to control notifications and files to scan
- Fixed a few bugs
- Refactored code
- Partial support for node_modules imports. AutoImport will scan your already used imports and provide them as suggestions when appropriate, so you will only need to type out your import once in one file and all other times will be handled by AutoImport. Version 0.7 will have full support for this.
- General improvements, icon added and extension will now also watch for local file changes.
- Work with node_modules (@angular / underscore for example).