UNPKG

typescript-assistant

Version:

Combines and integrates professional Typescript tools into your project

16 lines 543 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createAssistCommand = (deps) => { let { formatter, linter, compiler, nyc, server, watcher } = deps; return { execute: () => { watcher.watchSourceFileChanged(); server.start(); formatter.startVerifying(['source-files-changed']); linter.start('format-verified'); nyc.start(['source-files-changed']); compiler.start(); } }; }; //# sourceMappingURL=assist.js.map