UNPKG

657 BTypeScriptView Raw
1// cruise options, cruise result
2export type ModuleSystemType = "cjs" | "amd" | "es6" | "tsd";
3
4// cruise options, dependency-cruiser
5export type OutputType =
6 | "json"
7 | "html"
8 | "dot"
9 | "cdot"
10 | "ddot"
11 | "csv"
12 | "err"
13 | "err-long"
14 | "err-html"
15 | "teamcity"
16 | "anon"
17 | "text";
18
19export type SeverityType = "error" | "warn" | "info" | "ignore";
20
21// cruise options, cruise result, rule set
22export type DependencyType =
23 | "aliased"
24 | "core"
25 | "deprecated"
26 | "local"
27 | "localmodule"
28 | "npm"
29 | "npm-bundled"
30 | "npm-dev"
31 | "npm-no-pkg"
32 | "npm-optional"
33 | "npm-peer"
34 | "npm-unknown"
35 | "undetermined"
36 | "unknown";