From a6e3889f689e70a0ee80b814666e6d332356569b Mon Sep 17 00:00:00 2001 From: jaywcjlove <398188662@qq.com> Date: Wed, 29 Mar 2023 10:44:54 +0800 Subject: [PATCH] chore(deps): update dependency tsbb to v4 #44 https://github.com/jaywcjlove/tsbb/issues/439 --- package.json | 6 +++--- tsconfig.json | 7 +++---- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index 0a5a5e2..a6016b0 100644 --- a/package.json +++ b/package.json @@ -9,8 +9,8 @@ "prepare": "npm run build", "doc": "kkt build --app-src ./website", "start": "kkt start --app-src ./website", - "watch": "tsbb watch", - "build": "tsbb build" + "watch": "tsbb watch src/*.tsx --useBabel", + "build": "tsbb build src/*.tsx --useBabel" }, "repository": { "type": "git", @@ -38,7 +38,7 @@ "react": "~18.2.0", "react-dom": "~18.2.0", "kkt": "~7.4.9", - "tsbb": "~3.7.2" + "tsbb": "^4.0.1" }, "eslintConfig": { "extends": [ diff --git a/tsconfig.json b/tsconfig.json index a3b057a..937daad 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,23 +6,22 @@ "dom.iterable", "esnext" ], + "module": "esnext", + "moduleResolution": "node", "allowJs": true, "skipLibCheck": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "strict": true, "forceConsistentCasingInFileNames": true, - "module": "esnext", - "moduleResolution": "node", "resolveJsonModule": true, "isolatedModules": true, "declaration": true, - "baseUrl": "./website", "jsx": "react-jsx", "noFallthroughCasesInSwitch": true, "noEmit": true }, "include": [ - "website", ".kktrc.ts" + "src/**/*" ] }