2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 04:22:33 +08:00
Files
panel/web/tsconfig.node.json
2025-12-16 03:49:14 +08:00

16 lines
345 B
JSON

{
"extends": ["@tsconfig/node24/tsconfig.json"],
"compilerOptions": {
"composite": true,
"noEmit": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"module": "ESNext",
"moduleResolution": "Bundler",
"paths": {
"~/*": ["./*"],
"@/*": ["./src/*"]
},
"types": ["node"]
}
}