From 739ee27790b7fd2033d599d0a171fe97cdf4fb24 Mon Sep 17 00:00:00 2001 From: PeachScript Date: Sat, 8 Oct 2022 18:59:24 +0800 Subject: [PATCH] chore: move theme tsconfig.json --- .dumi/{theme => }/tsconfig.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename .dumi/{theme => }/tsconfig.json (62%) diff --git a/.dumi/theme/tsconfig.json b/.dumi/tsconfig.json similarity index 62% rename from .dumi/theme/tsconfig.json rename to .dumi/tsconfig.json index 0edbb9ffa0..f8fbae3a16 100644 --- a/.dumi/theme/tsconfig.json +++ b/.dumi/tsconfig.json @@ -1,8 +1,8 @@ { - "extends": "../../.umi/tsconfig.json", + "extends": "../.umi/tsconfig.json", "compilerOptions": { "jsx": "react", - "baseUrl": "../../", + "baseUrl": "../", "paths": { "@@/*": [".umi/*"], "antd": ["components/index.tsx"], @@ -10,5 +10,5 @@ "dumi/theme/*": [".dumi/theme/*"] } }, - "include": ["./**/*", "../../site/theme/template/Content"] + "include": ["./**/*", "../site/theme/template/Content"] }