vite-typescript-plugin
Version:
A Vite plugin for seamless integration between Vite and Typescript.
14 lines (13 loc) • 397 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getOptimizedRootNames = void 0;
function getOptimizedRootNames(appendNames = []) {
return [
...new Set([
...this.rootNames,
...appendNames,
...this.configFileOptions.fileNames
])
];
}
exports.getOptimizedRootNames = getOptimizedRootNames;