Skip to content

Commit 8424090

Browse files
committed
build: fix
1 parent 3bbda9c commit 8424090

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

packages/config/tsconfig.build.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"include": ["src", "index.ts"],
44
"compilerOptions": {
5-
"customConditions": null
5+
"customConditions": null,
6+
"types": ["node", "vitest/globals"]
67
}
78
}

packages/core/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"extends": "../../tsconfig.build.json",
33
"include": ["src", "__tests__"],
44
"compilerOptions": {
5+
"types": ["node", "vitest/globals"],
56
"paths": {
67
"@pandacss/fixture": ["../fixture/src/index.ts"]
78
}

packages/logger/tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
22
"extends": "../../tsconfig.build.json",
3+
"compilerOptions": {
4+
"types": ["node", "vitest/globals"]
5+
},
36
"include": ["src"]
47
}

0 commit comments

Comments
 (0)