From 40350f3a3186e3f5cc7cb4a28e90f6dcec1d9482 Mon Sep 17 00:00:00 2001 From: elrrrrrrr Date: Tue, 8 Aug 2023 17:03:56 +0800 Subject: [PATCH] chore: ignore config --- tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 25acf7985..c5a516621 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,15 +1,16 @@ { "extends": "@eggjs/tsconfig", "compilerOptions": { + "strict": true, "target": "ES2021", "module": "Node16", "moduleResolution": "Node", "declaration": false, "resolveJsonModule": true, "useUnknownInCatchVariables": false, - "noImplicitAny": true, }, "exclude": [ - "test" + "test", + "node_modules" ], }