2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 03:07:20 +08:00
Files
panel/web/tsconfig.node.json
2024-11-26 02:40:02 +08:00

24 lines
397 B
JSON

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