1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# angular-switcher configuration.
#
# Place this file at one of:
# - $XDG_CONFIG_HOME/angular-switcher/config.toml (global default)
# - .angular-switcher.toml in your project root (project override)
# - any path passed via --config
#
# Every field is optional. Anything omitted falls back to the built-in defaults
# below.
[]
# Order the cycle key advances through. Each entry must reference a target
# defined under [targets.*]. Reorder to taste — e.g. ["ts", "html", "style"]
# if you don't write specs.
= ["ts", "html", "style", "spec"]
# Wrap from the last entry back to the first when cycling forward (and vice
# versa with --reverse).
= true
# When the next target has no sibling on disk, skip past it instead of erroring.
= true
[]
= ["ts"]
# Without this, *.spec.ts would also match the "ts" target. The exclude tells
# the resolver to leave spec files for the "spec" target.
= ["spec.ts"]
[]
= ["html"]
[]
# All recognised style extensions. The resolver tries them in `preference`
# order until one exists on disk.
= ["scss", "css", "sass", "less"]
= ["scss", "css", "sass", "less"]
[]
= ["spec.ts"]
[]
# When the current file matches no target (e.g. a plain .ts that isn't a
# component), fall back to the filename stem so the cycle still has a basename
# to work from. Disable to make non-component files exit with an error.
= true