Skip to content

Commit 345ca1a

Browse files
committed
fix: type error
1 parent e20d595 commit 345ca1a

3 files changed

Lines changed: 2109 additions & 2511 deletions

File tree

.codesandbox/tasks.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
// These tasks will run in order when initializing your CodeSandbox project.
3+
"setupTasks": [
4+
{
5+
"command": "pnpm install",
6+
"name": "Install Dependencies"
7+
}
8+
],
9+
10+
// These tasks can be run from CodeSandbox. Running one will open a log in the app.
11+
"tasks": {
12+
"build": {
13+
"name": "build",
14+
"command": "pnpm build",
15+
"runAtStart": false
16+
},
17+
"clean": {
18+
"name": "clean",
19+
"command": "pnpm clean",
20+
"runAtStart": false
21+
},
22+
"watch": {
23+
"name": "watch",
24+
"command": "pnpm watch",
25+
"runAtStart": false
26+
},
27+
"test": {
28+
"name": "test",
29+
"command": "pnpm test",
30+
"runAtStart": false
31+
},
32+
"test:ui": {
33+
"name": "test:ui",
34+
"command": "pnpm test:ui",
35+
"runAtStart": false
36+
}
37+
}
38+
}

0 commit comments

Comments
 (0)