Skip to content

Commit a6e3889

Browse files
committed
chore(deps): update dependency tsbb to v4 #44
jaywcjlove/tsbb#439
1 parent 9427dcb commit a6e3889

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"prepare": "npm run build",
1010
"doc": "kkt build --app-src ./website",
1111
"start": "kkt start --app-src ./website",
12-
"watch": "tsbb watch",
13-
"build": "tsbb build"
12+
"watch": "tsbb watch src/*.tsx --useBabel",
13+
"build": "tsbb build src/*.tsx --useBabel"
1414
},
1515
"repository": {
1616
"type": "git",
@@ -38,7 +38,7 @@
3838
"react": "~18.2.0",
3939
"react-dom": "~18.2.0",
4040
"kkt": "~7.4.9",
41-
"tsbb": "~3.7.2"
41+
"tsbb": "^4.0.1"
4242
},
4343
"eslintConfig": {
4444
"extends": [

tsconfig.json

+3-4
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,22 @@
66
"dom.iterable",
77
"esnext"
88
],
9+
"module": "esnext",
10+
"moduleResolution": "node",
911
"allowJs": true,
1012
"skipLibCheck": true,
1113
"esModuleInterop": true,
1214
"allowSyntheticDefaultImports": true,
1315
"strict": true,
1416
"forceConsistentCasingInFileNames": true,
15-
"module": "esnext",
16-
"moduleResolution": "node",
1717
"resolveJsonModule": true,
1818
"isolatedModules": true,
1919
"declaration": true,
20-
"baseUrl": "./website",
2120
"jsx": "react-jsx",
2221
"noFallthroughCasesInSwitch": true,
2322
"noEmit": true
2423
},
2524
"include": [
26-
"website", ".kktrc.ts"
25+
"src/**/*"
2726
]
2827
}

0 commit comments

Comments
 (0)