When initializing a new project iwth Bun, some strict options are enabled, while others are disabled, The following is generated by Bun when initializing a new project,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
The comment isn't clear either, saying they're disabled by default, yet they continued to be disabled when set to false? This is all a bit confusing