From a2d9c7409b951ab999aa59152b8c06e5378b2834 Mon Sep 17 00:00:00 2001 From: TheoryOfNekomata Date: Mon, 10 Apr 2023 07:13:14 +0800 Subject: [PATCH] Update tsconfig.json Use standalone tsconfig. --- tsconfig.json | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 94556fd..4ae90a1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,20 @@ { "exclude": ["node_modules"], - "extends": "../../../tsconfig.json", "compilerOptions": { - "rootDir": "src" + "rootDir": "src", + "module": "ESNext", + "lib": ["DOM", "ESNext"], + "importHelpers": true, + "declaration": true, + "sourceMap": true, + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noImplicitReturns": true, + "noFallthroughCasesInSwitch": true, + "moduleResolution": "node", + "jsx": "react", + "esModuleInterop": true, + "target": "ES2017" } }