From 1aa298e3f31b03d99ca5638e466344012c70b329 Mon Sep 17 00:00:00 2001 From: KuangPF <1633397286@qq.com> Date: Fri, 4 Aug 2023 21:18:06 +0800 Subject: [PATCH] chore(tsconfig): set `declartion` option value --- tsconfig.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 5a1e7cc..0b29edb 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,6 +3,8 @@ "strictNullChecks": true, "module": "esnext", "moduleResolution": "node", + "declaration": true, + "resolveJsonModule": true, "esModuleInterop": true, "experimentalDecorators": true, "jsx": "react-jsx",