File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3030 "scripts" : {
3131 "benchmark" : " pnpm vitest bench --config=test/vitest.benchmark.js && node test/benchmark/rewrite-result.js" ,
3232 "build" : " rimraf ./dist && tsc --project tsconfig.build.json" ,
33+ "typecheck" : " tsc --noEmit" ,
3334 "build:test" : " rimraf ./test_dist && tsc --project tsconfig.test.json" ,
3435 "lint" : " eslint ." ,
3536 "lint:fix" : " pnpm run lint --fix" ,
Original file line number Diff line number Diff line change @@ -3,7 +3,15 @@ import * as D from "io-ts/lib/Decoder.js";
33
44export interface TerminalConfig {
55 watch : boolean ;
6- displayMode : "raw" | "file-tree" | "graph" | "webapp" | ( string & { } ) ;
6+ displayMode :
7+ | "raw"
8+ | "file-tree"
9+ | "graph"
10+ | "webapp"
11+ | "md"
12+ | "json"
13+ | "svg"
14+ | "png" ;
715 showCircularDependencies : boolean ;
816 showUnusedDependencies : boolean ;
917 showUnusedFiles : boolean ;
You can’t perform that action at this time.
0 commit comments