From 951a8c51f09c4b3830d3b5561c8ad38ddf364dc8 Mon Sep 17 00:00:00 2001 From: minie4 Date: Sun, 1 Jan 2023 17:16:18 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Add=20jsconfig=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jsconfig.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 jsconfig.json diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000..88c3237 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,11 @@ +{ + "compilerOptions": { + "module": "ESNext", + "moduleResolution": "Node", + "target": "ES2020", + "jsx": "react", + "strictNullChecks": true, + "strictFunctionTypes": true + }, + "exclude": ["node_modules", "**/node_modules/*"] +}