Reproduction
Field decorators cannot collect values into static properties:
src/options.ts
import { Flag } from 'func'
class Options {
@Flag()
static verbose = false
}How to fix it
Move the decorator and value to an instance property:
src/options.ts
class Options {
@Flag()
verbose = false
}