2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 03:07:20 +08:00

fix: build

This commit is contained in:
2025-12-16 03:49:14 +08:00
parent a277a5d214
commit a328c29870

View File

@@ -1,7 +1,5 @@
{
"extends": [
"@tsconfig/node22/tsconfig.json"
],
"extends": ["@tsconfig/node24/tsconfig.json"],
"compilerOptions": {
"composite": true,
"noEmit": true,
@@ -9,15 +7,9 @@
"module": "ESNext",
"moduleResolution": "Bundler",
"paths": {
"~/*": [
"./*"
],
"@/*": [
"./src/*"
]
"~/*": ["./*"],
"@/*": ["./src/*"]
},
"types": [
"node"
]
"types": ["node"]
}
}