19 lines
499 B
Markdown
19 lines
499 B
Markdown
|
|
---
|
||
|
|
# nuzlocke-tracker-zom1
|
||
|
|
title: Add missing tsconfig strictness flags
|
||
|
|
status: completed
|
||
|
|
type: task
|
||
|
|
priority: normal
|
||
|
|
created_at: 2026-02-16T19:13:49Z
|
||
|
|
updated_at: 2026-02-16T19:24:15Z
|
||
|
|
parent: nuzlocke-tracker-a5es
|
||
|
|
---
|
||
|
|
|
||
|
|
tsconfig.app.json is missing 4 required strict flags from the global standards:
|
||
|
|
|
||
|
|
- noUncheckedIndexedAccess: true
|
||
|
|
- exactOptionalPropertyTypes: true
|
||
|
|
- noImplicitOverride: true
|
||
|
|
- noPropertyAccessFromIndexSignature: true
|
||
|
|
|
||
|
|
These need to be added and any resulting type errors fixed.
|