1 | import * as tsfmt from "typescript-formatter";
|
2 |
|
3 | tsfmt
|
4 | .processFiles(["./index.ts"], {
|
5 | dryRun: true,
|
6 | replace: false,
|
7 | verify: false,
|
8 | tsconfig: true,
|
9 | tslint: true,
|
10 | editorconfig: true,
|
11 | tsfmt: true
|
12 | })
|
13 | .then(result =>{
|
14 | console.log(result["./index.ts"].dest);
|
15 | });
|