diff --git a/configuration/tsconfig/tsconfig.json b/configuration/tsconfig/tsconfig.json index b261bf43..8ece067a 100644 --- a/configuration/tsconfig/tsconfig.json +++ b/configuration/tsconfig/tsconfig.json @@ -19,15 +19,21 @@ "allowSyntheticDefaultImports": true, "noImplicitAny": true, "noImplicitReturns": true, - "noUnusedLocals": true, - "noUnusedParameters": true, + "noUnusedLocals": false, + "noUnusedParameters": false, "outDir": "../../../lib/", - "lib": ["ES2022", "DOM"], + "lib": [ + "ES2022", + "DOM" + ], "strict": true, "target": "ES2022" }, "ts-node": { "transpileOnly": true }, - "exclude": ["../../../app.js", "../../../lib/"] + "exclude": [ + "../../../app.js", + "../../../lib/" + ] }