ts-barrelrFeaturests-barrelr automates the production of index.ts barrel files. ts-barrelr will produce an index.ts containing all files and folders within the folder containing the current file open in the editor window. There are two ways to trigger barrelr:
Running the command again will update the barrel with any new or changed files. ConfigurationIncluded files:By default barrelr will include any files with a Quote Marks:By default ts-barrelr will use single quotes as the default quotemark for imports in index.ts files. This can be changed to double quotes using the setting: barrelr.useDoubleQuotes Semi-colons:By default ts-barrelr will add semi colons at the end of each line, if you want to disable this you can use the setting: barrelr.useSemiColons Line ending:By default ts-barrelr will use Windows style line endings Files to exclude:By default ts-barrelr will exclude any files containing .spec., .e2e. or .test. This can be changed as a regular expression by changing the setting: barrelr.excludeFileRegex |