Fixed Error with bun types

This commit is contained in:
Denis Urs Rudolph
2025-12-12 12:28:17 +01:00
parent 1774388ffb
commit 3071233171
3 changed files with 19 additions and 4 deletions

View File

@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@@ -18,8 +22,13 @@
"name": "next"
}
],
"types": [
"bun-types"
],
"paths": {
"@/*": ["./*"]
"@/*": [
"./*"
]
}
},
"include": [
@@ -30,5 +39,7 @@
".next/dev/types/**/*.ts",
"**/*.mts"
],
"exclude": ["node_modules"]
}
"exclude": [
"node_modules"
]
}