Re-enable strict mode (#1749)

## Description:

Re-enable strict mode

## Please complete the following:

- [x] I have added screenshots for all UI updates
- [x] I process any text displayed to the user through translateText()
and I've added it to the en.json file
- [x] I have added relevant tests to the test directory
- [x] I confirm I have thoroughly tested these changes and take full
responsibility for any bugs introduced
This commit is contained in:
Scott Anderson
2025-08-11 19:09:06 -04:00
committed by GitHub
parent f481af1da0
commit 0f713abd85
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ ENV NPM_CONFIG_IGNORE_SCRIPTS=1
# Copy package.json and package-lock.json
COPY package*.json ./
# Install dependencies
RUN npm ci --omit=dev
RUN npm ci
# Final image
FROM base
+2 -1
View File
@@ -21,7 +21,8 @@
"resolveJsonModule": true,
"strictNullChecks": true,
"useDefineForClassFields": false,
"strictPropertyInitialization": false
"strictPropertyInitialization": false,
"strict": true
},
"include": [
"src/**/*",