Skip to content

Commit 78de8a7

Browse files
authored
Enabling noUncheckedSideEffectImports globally (#2972)
This is one of the recommended settings of latest Typescript. It checks if side effect imports do exist and correct. Since the framework does have side effects via `zod-plugin`, this setting makes sense to activate. https://www.typescriptlang.org/tsconfig/#noUncheckedSideEffectImports <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Chores** * Maintenance-only update: internal TypeScript compiler configuration adjusted for development/build processes. No changes to functionality, interface, performance, or compatibility. No impact on data, settings, or user workflows. App behavior remains the same across all platforms. No action required. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent 49e871e commit 78de8a7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"compilerOptions": {
44
"noImplicitAny": true,
55
"noImplicitOverride": true,
6+
"noUncheckedSideEffectImports": true,
67
"strictNullChecks": true,
78
"types": ["vitest/globals"]
89
}

0 commit comments

Comments
 (0)