Skip to content

Commit

Permalink
chore(deps): update dependency tsbb to v4 #44
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Mar 29, 2023
1 parent 9427dcb commit a6e3889
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -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",
Expand Down Expand Up @@ -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": [
Expand Down
7 changes: 3 additions & 4 deletions tsconfig.json
Expand Up @@ -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/**/*"
]
}

0 comments on commit a6e3889

Please sign in to comment.